]> sipb.mit.edu Git - ikiwiki.git/commitdiff
Add wish about not using 'cp -a'
authorHenrikBrixAndersen <HenrikBrixAndersen@web>
Wed, 13 Aug 2008 19:28:33 +0000 (15:28 -0400)
committerJoey Hess <joey@kitenet.net>
Wed, 13 Aug 2008 19:28:33 +0000 (15:28 -0400)
doc/bugs/Please_avoid_using___39__cp_-a__39___in_Makefile.PL.mdwn [new file with mode: 0644]

diff --git a/doc/bugs/Please_avoid_using___39__cp_-a__39___in_Makefile.PL.mdwn b/doc/bugs/Please_avoid_using___39__cp_-a__39___in_Makefile.PL.mdwn
new file mode 100644 (file)
index 0000000..5f55678
--- /dev/null
@@ -0,0 +1,14 @@
+In ikiwiki-2.60, external plug-ins are yet again installed using 'cp -a' instead of 'install -m 755'. This poses a problem on at least FreeBSD 6.x, since the cp(1) command doesn't support the '-a' flag.
+
+The change in question (from 2.56 to 2.60) can be seen here:
+
+    -       for file in `find plugins -maxdepth 1 -type f ! -wholename plugins/.\*`; do \
+    -               install -m 755 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
+    -       done; \
+    +       for file in `find plugins -maxdepth 1 -type f ! -wholename plugins/.\* | grep -v demo`; do \
+    +               cp -a $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
+    +       done \
+
+Please restore the old behaviour of using 'install' :-)
+
+  -- [[HenrikBrixAndersen]]