X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/e97b63c95aad40de6498bd480a38d7a57764ad53..08d0bd73384b79b5c21f75b06a982fc62998a0c2:/Makefile.PL diff --git a/Makefile.PL b/Makefile.PL index 43af95c59..5514a98ce 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -30,7 +30,7 @@ extra_build: ./pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB) < ikiwiki.in > ikiwiki.out chmod +x ikiwiki.out LANG=C perl -I. $(extramodules) $(tflag) ikiwiki.out doc html --templatedir=templates \ - --underlaydir=basewiki \ + --underlaydir=basewiki --nousedirs\ --wikiname="ikiwiki" --verbose \ --exclude=/discussion --no-discussion --userdir=users \ --plugin=goodstuff \ @@ -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