mirror of
https://git.freebsd.org/ports.git
synced 2025-06-30 17:10:33 -04:00
- Updaet gd dependancy - Added missing MAN8 - Merged pkg-plist.(doc|cgi) into pkg-plist - General cleanup
22 lines
632 B
Text
22 lines
632 B
Text
--- ./conf/Makefile.in.orig Fri Feb 16 16:19:11 2001
|
|
+++ ./conf/Makefile.in Fri Mar 23 07:31:03 2001
|
|
@@ -12,17 +12,9 @@
|
|
|
|
install:
|
|
@for f in $(SECFILES) ; do \
|
|
- if (test -f $(CONFPATH)/$$f ); then \
|
|
- echo "Preserving existing config file: $$f"; \
|
|
- else \
|
|
- $(INSTALLCMD) -m 0600 $$f $(CONFPATH); \
|
|
- fi; \
|
|
+ $(INSTALLCMD) -m 0600 $$f $(CONFPATH)/$$f.sample; \
|
|
done
|
|
|
|
@for f in $(PUBFILES) ; do \
|
|
- if (test -f $(CONFPATH)/$$f ); then \
|
|
- echo "Preserving existing config file: $$f"; \
|
|
- else \
|
|
- $(INSTALLCMD) -m 0644 $$f $(CONFPATH); \
|
|
- fi; \
|
|
+ $(INSTALLCMD) -m 0644 $$f $(CONFPATH)/$$f.sample; \
|
|
done
|