diff options
Diffstat (limited to 'sysutils/nut/files/patch-aa')
-rw-r--r-- | sysutils/nut/files/patch-aa | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/sysutils/nut/files/patch-aa b/sysutils/nut/files/patch-aa new file mode 100644 index 000000000000..043bed9cc5bf --- /dev/null +++ b/sysutils/nut/files/patch-aa @@ -0,0 +1,54 @@ +--- clients/Makefile.in.org Wed Nov 10 01:36:44 1999 ++++ clients/Makefile.in Mon Jan 10 16:43:44 2000 +@@ -53,8 +53,8 @@ + + install: all + @for p in $(PROGS) ; do \ +- echo cp $$p $(BASEPATH)/bin; \ +- cp $$p $(BASEPATH)/bin; \ ++ echo cp $$p $(BASEPATH)/sbin; \ ++ cp $$p $(BASEPATH)/sbin; \ + done + + install-cgi: cgi + +--- conf/Makefile.in.org Mon Oct 18 03:56:11 1999 ++++ conf/Makefile.in Tue Jan 11 16:57:15 2000 +@@ -9,10 +9,6 @@ + + install: + @for f in $(CONFFILES) ; do \ +- if [ -f $(CONFPATH)/$$f ]; then \ +- echo "Preserving existing config file: $$f"; \ +- else \ +- echo cp $$f $(CONFPATH); \ +- cp $$f $(CONFPATH); \ +- fi; \ ++ echo cp $$f $(CONFPATH)/$$f.sample; \ ++ cp $$f $(CONFPATH)/$$f.sample; \ + done + +--- server/Makefile.in.org Wed Nov 10 01:37:01 1999 ++++ server/Makefile.in Mon Jan 10 16:41:55 2000 +@@ -21,6 +21,6 @@ + + install: all + @for p in $(PROGS) ; do \ +- echo cp $$p $(BASEPATH)/bin ; \ +- cp $$p $(BASEPATH)/bin; \ ++ echo cp $$p $(BASEPATH)/sbin ; \ ++ cp $$p $(BASEPATH)/sbin; \ + done + +--- models/Makefile.in.org Wed Nov 10 01:36:44 1999 ++++ models/Makefile.in Mon Jan 10 16:43:44 2000 +@@ -35,6 +35,6 @@ + + install: all + @for p in $(PROGS) ; do \ +- echo cp $$p $(BASEPATH)/bin; \ +- cp $$p $(BASEPATH)/bin; \ ++ echo cp $$p $(BASEPATH)/sbin; \ ++ cp $$p $(BASEPATH)/sbin; \ + done + |