diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/ChangeLog | 5 | ||||
-rw-r--r-- | config/Makefile | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/config/ChangeLog b/config/ChangeLog index 4233ae49..0eb6027e 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,8 @@ +Fri Aug 2 11:07:18 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * Makefile (DIST_FILES): Put `root-' before ROOTDOTS and `login-' + before LOGINDOTS. + Wed Jul 31 12:11:02 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> * passwd (games): Have no password. diff --git a/config/Makefile b/config/Makefile index ba2693e8..4ff7a5f4 100644 --- a/config/Makefile +++ b/config/Makefile @@ -38,7 +38,9 @@ installed_rootdots = $(addprefix $(prefix)/root/,$(ROOTDOTS)) LINKEDCONFFILES = rc installed_links = $(addprefix $(sysconfdir)/,$(LINKEDCONFFILES)) -DIST_FILES=$(SYSCONFFILES) $(LOGINDOTS) $(ROOTDOTS) +DIST_FILES=$(SYSCONFFILES) \ + $(addprefix login-,$(LOGINDOTS)) \ + $(addprefix root-,$(ROOTDOTS)) foo=$(shell touch /dev/null) |