From f23ebaad2eae04263fe195a10712cb633c32dee9 Mon Sep 17 00:00:00 2001 From: joey Date: Thu, 10 May 2007 18:59:02 +0000 Subject: * Apply patch from Pawel to avoid using -L in Makefile as it's not available in older finds. --- Makefile.PL | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL index 73c4950cb..5514a98ce 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -47,9 +47,9 @@ extra_clean: extra_install: install -d $(DESTDIR)$(PREFIX)/share/ikiwiki - for dir in `find -L basewiki templates -type d ! -regex '.*\.svn.*'`; do \ + for dir in `find basewiki templates -follow -type d ! -regex '.*\.svn.*'`; do \ install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \ - for file in `find -L $$dir -maxdepth 1 -type f`; do \ + for file in `find $$dir -follow -maxdepth 1 -type f`; do \ install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \ done; \ done -- cgit v1.2.3