mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
5d7f63b7f2
Submitted-by: Andrew L. Neporada <andrew@chg.ru> (ports/18158)
21 lines
923 B
Plaintext
21 lines
923 B
Plaintext
--- config/Makefile.in.orig Sun Jan 16 19:06:43 2000
|
|
+++ config/Makefile.in Sat Apr 22 13:04:25 2000
|
|
@@ -125,12 +125,15 @@
|
|
$(mkinstalldirs) $(DESTDIR)$(pkgsysconfdir)
|
|
@list='$(pkgsysconf_DATA)'; for p in $$list; do \
|
|
if test -f $(srcdir)/$$p; then \
|
|
- echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgsysconfdir)/$$p"; \
|
|
- $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgsysconfdir)/$$p; \
|
|
+ echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgsysconfdir)/$$p.default"; \
|
|
+ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgsysconfdir)/$$p.default; \
|
|
else if test -f $$p; then \
|
|
echo " $(INSTALL_DATA) $$p $(DESTDIR)$(pkgsysconfdir)/$$p"; \
|
|
$(INSTALL_DATA) $$p $(DESTDIR)$(pkgsysconfdir)/$$p; \
|
|
fi; fi; \
|
|
+ if test ! -f $(DESTDIR)$(pkgsysconfdir)/$$p; then \
|
|
+ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgsysconfdir)/$$p; \
|
|
+ fi; \
|
|
done
|
|
|
|
uninstall-pkgsysconfDATA:
|