From: Joey Hess Date: Tue, 21 Jul 2009 11:16:46 +0000 (+0200) Subject: split out underlay_install target X-Git-Tag: 3.15~130 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5efda4da294e37a98b04561f475b186ae8c64138;p=ikiwiki.git split out underlay_install target --- diff --git a/Makefile.PL b/Makefile.PL index 93f9e89e2..c615009bb 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -52,7 +52,7 @@ extra_clean: rm -f *.man ikiwiki.out ikiwiki.setup plugins/*.pyc $(MAKE) -C po clean -extra_install: +underlay_install: install -d $(DESTDIR)$(PREFIX)/share/ikiwiki for dir in `cd underlays && find . -follow -type d ! -regex '.*\.svn.*'`; do \ install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \ @@ -70,6 +70,7 @@ extra_install: fi \ done +extra_install: underlay_install # Install example sites. for dir in `cd doc/examples; find . -type d ! -regex '.*\.svn.*'`; do \ install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$dir; \