diff options
author | reed <reed@pkgsrc.org> | 2004-10-19 21:01:47 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2004-10-19 21:01:47 +0000 |
commit | 33aeffe4aa880ef186b329b1632da594d1be671b (patch) | |
tree | d8baf0130f05da2ede10241aae0f5fb937f2e3e7 | |
parent | 481df8531fe3885c22972d4213a4dee6a65803d3 (diff) | |
download | pkgsrc-33aeffe4aa880ef186b329b1632da594d1be671b.tar.gz |
Instead of non-portable cp -RL, use pax with -Lrw
to copy the extensions files.
On Solaris, cp doesn't know -L. (Reported by R. Quinn.)
Using pax was suggested by grant@.
-rw-r--r-- | www/firefox/Makefile-firefox.common | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/firefox/Makefile-firefox.common b/www/firefox/Makefile-firefox.common index c9dd3cbe832..2543a17c357 100644 --- a/www/firefox/Makefile-firefox.common +++ b/www/firefox/Makefile-firefox.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile-firefox.common,v 1.5 2004/10/16 20:08:48 reed Exp $ +# $NetBSD: Makefile-firefox.common,v 1.6 2004/10/19 21:01:47 reed Exp $ MOZILLA_BIN= firefox-bin MOZ_VER= 0.10.1 @@ -30,8 +30,8 @@ BUILD_MATHML= # defined MESSAGE= ${.CURDIR}/../../www/firefox/MESSAGE pre-install: - ${CP} -RL ${WRKSRC}/dist/bin/defaults/profile/extensions \ - ${WRKSRC}/dist/bin + cd ${WRKSRC}/dist/bin/defaults/profile/ && \ + ${PAX} -Lrw extensions ${WRKSRC}/dist/bin ${MV} ${WRKSRC}/dist/bin/extensions/installed-extensions.txt \ ${WRKSRC}/dist/bin/extensions/installed-extensions-processed.txt |