]> sipb.mit.edu Git - ikiwiki.git/blobdiff - Makefile.PL
add
[ikiwiki.git] / Makefile.PL
index 4f6b051797f72a6a3e7671b321ce0c6d340954ba..43af95c59c4916ffaf8196c581b905c499dba154 100755 (executable)
@@ -42,13 +42,17 @@ extra_build:
 
 extra_clean:
        rm -rf html doc/.ikiwiki
-       rm -f ikiwiki.man ikiwiki-mass-rebuild.man ikiwiki.out tmon.out
+       rm -f ikiwiki.man ikiwiki-mass-rebuild.man ikiwiki.out
        $(MAKE) -C po clean
 
 extra_install:
        install -d $(DESTDIR)$(PREFIX)/share/ikiwiki
-       find basewiki templates \( -type f -or -type l \) ! -regex '.*\.svn.*' \
-               -exec cp --parents -aL {} $(DESTDIR)$(PREFIX)/share/ikiwiki \;
+       for dir in `find -L basewiki templates -type d ! -regex '.*\.svn.*'`; do \
+               install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
+               for file in `find -L $$dir -maxdepth 1 -type f`; do \
+                       install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
+               done; \
+       done
 
        install -d $(DESTDIR)$(PREFIX)/share/man/man1
        install -m 644 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1