diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-07-21 13:16:46 +0200 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-07-21 13:16:46 +0200 |
commit | 5efda4da294e37a98b04561f475b186ae8c64138 (patch) | |
tree | e2882bf6788902b07bb0309ec0af4016ec9f2613 | |
parent | c56ff6cd4723e8ec709c6078e20b8b72b0aed443 (diff) | |
download | ikiwiki-5efda4da294e37a98b04561f475b186ae8c64138.tar ikiwiki-5efda4da294e37a98b04561f475b186ae8c64138.tar.gz |
split out underlay_install target
-rwxr-xr-x | Makefile.PL | 3 |
1 files changed, 2 insertions, 1 deletions
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; \ |