summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-07-13 23:19:14 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-07-13 23:19:14 +0000
commit07ffab4f3f9061516645cc3c01c8a8f71824add6 (patch)
tree55bc71dd0682bd79b7033b9f80299f98726ec845
parentd9ca2dfe7a9a05fbd9f65eac760f1d19a58053a9 (diff)
Always touch /dev/null.
If OVERRIDE_CONF, then $(installed_rootdots) and $(installed_conf) depend on it. $(installed_logins) always depend on /dev/null.
-rw-r--r--config/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/config/Makefile b/config/Makefile
index 61de8114..0573676f 100644
--- a/config/Makefile
+++ b/config/Makefile
@@ -40,13 +40,15 @@ installed_links = $(addprefix $(sysconfdir)/,$(LINKEDCONFFILES))
DIST_FILES=$(SYSCONFFILES) $(LOGINDOTS) $(ROOTDOTS)
-ifeq ($(override_conf),t)
foo=$(shell touch /dev/null)
-override_spec = /dev/null
-else
-override_spec =
+
+ifeq ($(override_conf),t)
+$(installed_rootdots): /dev/null
+$(installed_conf): /dev/null
endif
+$(installed_logins): /dev/null
+
include ../Makeconf
install: $(installed_conf) $(installed_links) $(installed_logins) \