X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/722d893c83b011c6b35ac098c012126ebd0eeb3c..106d55bf47bbf8c26b1986de59072f48c858cad0:/doc/bugs/Use_install__40__1__41___instead_of_cp__40__1__41___for_installing_files.mdwn?ds=sidebyside diff --git a/doc/bugs/Use_install__40__1__41___instead_of_cp__40__1__41___for_installing_files.mdwn b/doc/bugs/Use_install__40__1__41___instead_of_cp__40__1__41___for_installing_files.mdwn index fc0e0a47d..12c0ad07f 100644 --- a/doc/bugs/Use_install__40__1__41___instead_of_cp__40__1__41___for_installing_files.mdwn +++ b/doc/bugs/Use_install__40__1__41___instead_of_cp__40__1__41___for_installing_files.mdwn @@ -1,6 +1,6 @@ Currently ikiwiki uses cp(1) with GNU extensions in Makefile.PL for installing files, thus causing problems on FreeBSD which doesn't have a cp(1) with GNU extensions in the base system. -Here is a patch againt ikiwiki-1.51 for using find(1) and install(1) instead of cp(1). +Here is a patch against ikiwiki-1.51 for using find(1) and install(1) instead of cp(1). --- Makefile.PL.orig Sun Apr 29 12:57:51 2007 +++ Makefile.PL Sun Apr 29 13:08:38 2007 @@ -22,4 +22,11 @@ Here is a patch againt ikiwiki-1.51 for using find(1) and install(1) instead of > Couldn't it just use install -D ? --[[Joey]] ->> No, apparently FreeBSD `install` does not support `-D`. See [the FreeBSD install manpage](http://www.freebsd.org/cgi/man.cgi?query=install&apropos=0&sektion=0&manpath=FreeBSD+6.2-RELEASE&format=html). --[[JoshTriplett]] \ No newline at end of file +>> No, apparently FreeBSD `install` does not support `-D`. See [the FreeBSD install manpage](http://www.freebsd.org/cgi/man.cgi?query=install&apropos=0&sektion=0&manpath=FreeBSD+6.2-RELEASE&format=html). --[[JoshTriplett]] + +>> Patch applied; [[done]]. --[[JoshTriplett]] + +There are still/again "cp -a"s in the Makefile as of 3.00 + +> It's a cp -a || install. Is that causing you a problem somehow? +> --[[Joey]]