mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-26 13:31:08 -04:00
28 lines
1.3 KiB
Plaintext
28 lines
1.3 KiB
Plaintext
$NetBSD: patch-aa,v 1.4 2004/11/29 00:58:09 tv Exp $
|
|
|
|
--- Makefile.in.orig 2004-11-28 19:45:33.000000000 -0500
|
|
+++ Makefile.in
|
|
@@ -34,9 +34,8 @@ banner:
|
|
@echo " do not something criminal during the installation; "
|
|
@echo " 2. \`su' to root; "
|
|
@echo " 3. Run \`make install' to install Binkd. "
|
|
- @echo " 4. Edit $(PREFIX)/etc/$(APPL).conf-dist and RENAME it or"
|
|
- @echo " MOVE it somewhere (so another \`make install' will "
|
|
- @echo " not overwrite it during your next Binkd upgrade) "
|
|
+ @echo " 4. Create @sysconfdir@/$(APPL).conf, using the files in "
|
|
+ @echo " $(PREFIX)/share/examples/$(APPL)."
|
|
@echo
|
|
@echo " If you want to put the files into some other directory just "
|
|
@echo " run \`configure --prefix=/another/path' and go to step 1. "
|
|
@@ -53,8 +52,8 @@ install: compile .version
|
|
ln -s $(PREFIX)/sbin/$(APPL)-`cat .version` $(PREFIX)/sbin/$(APPL)
|
|
./mkinstalldirs $(PREFIX)/man/man8
|
|
$(INSTALL) -m 644 $(APPL).8 $(PREFIX)/man/man8/$(APPL).8
|
|
- ./mkinstalldirs $(PREFIX)/etc
|
|
- $(INSTALL) -m 644 $(APPL).cfg $(PREFIX)/etc/$(APPL).conf-dist
|
|
+ ./mkinstalldirs $(PREFIX)/share/examples/$(APPL)
|
|
+ $(INSTALL) -m 644 $(APPL).cfg $(PREFIX)/share/examples/$(APPL)/$(APPL).conf
|
|
|
|
clean:
|
|
rm -f *.[bo] unix/*.[bo] ntlm/*.[bo] *.BAK *.core *.obj *.err
|