mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 23:20:30 -04:00
- Remove rc.d script and pkg-message. - Add LICENSE. - Use bsd.port.options.mk. Approved by: tabthorpe (mentor)
17 lines
749 B
Text
17 lines
749 B
Text
--- config/modules/Makefile.in.orig 2010-08-25 02:02:45.920937579 +0200
|
|
+++ config/modules/Makefile.in 2010-08-25 02:04:07.949176894 +0200
|
|
@@ -262,11 +262,9 @@
|
|
@list='$(dist_moduleconf_DATA)'; test -n "$(moduleconfdir)" || list=; \
|
|
for p in $$list; do \
|
|
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
|
- echo "$$d$$p"; \
|
|
- done | $(am__base_list) | \
|
|
- while read files; do \
|
|
- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(moduleconfdir)'"; \
|
|
- $(INSTALL_DATA) $$files "$(DESTDIR)$(moduleconfdir)" || exit $$?; \
|
|
+ $(am__strip_dir) \
|
|
+ echo " $(INSTALL_DATA) $$d$$p '$(DESTDIR)$(moduleconfdir)/$$f'"; \
|
|
+ $(INSTALL_DATA) $$d$$p "$(DESTDIR)$(moduleconfdir)/$$f.sample" || exit $$?; \
|
|
done
|
|
|
|
uninstall-dist_moduleconfDATA:
|