Avoid using cp -a (again). (HenrikBrixAndersen)

master
Joey Hess 2008-08-21 16:21:40 -04:00
parent b12f29e456
commit dec9b4e2c9
3 changed files with 14 additions and 3 deletions

View File

@ -67,9 +67,12 @@ extra_install:
done
install -d $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins
for file in `find plugins -maxdepth 1 -type f ! -wholename plugins/.\* | grep -v demo`; do \
cp -a $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
done \
for file in `find plugins -maxdepth 1 -type f ! -wholename plugins/.\* ! -name \*demo\* -name \*.py`; do \
install -m 644 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
done
for file in `find plugins -maxdepth 1 -type f ! -wholename plugins/.\* ! -name \*demo\* ! -name \*.py`; do \
install -m 755 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
done
install -d $(DESTDIR)$(PREFIX)/share/man/man1
install -m 644 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
ikiwiki (2.62) UNRELEASED; urgency=low
* Avoid using cp -a (again). (HenrikBrixAndersen)
-- Joey Hess <joeyh@debian.org> Thu, 21 Aug 2008 16:20:58 -0400
ikiwiki (2.61) unstable; urgency=low
* poll: Fix typo that broke plugin.

View File

@ -73,3 +73,5 @@ Please restore the old behaviour of using 'install' :-)
install -d $(DESTDIR)$(PREFIX)/share/man/man1
install -m 644 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1
[[tag done]]