diff options
author | reed <reed> | 2004-10-16 20:08:48 +0000 |
---|---|---|
committer | reed <reed> | 2004-10-16 20:08:48 +0000 |
commit | e46245734cb982aebdfec07695a9f91a6d9fd9ad (patch) | |
tree | 6be0ed8ba50928857c402da28492f1419d5aac77 /www/firefox | |
parent | 21e96748bba9fd3a22c2f95d26a5da6abab7184c (diff) | |
download | pkgsrc-e46245734cb982aebdfec07695a9f91a6d9fd9ad.tar.gz |
Use cp(1)'s -RL instead of -r, because coreutils's
cp -r copies symlinks as symlinks (which caused
files to be missing in install).
Hopefully, this is portable. I tested under NetBSD and with coreutils.
And I brought this up on tech-pkg in July.
Diffstat (limited to 'www/firefox')
-rw-r--r-- | www/firefox/Makefile-firefox.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/firefox/Makefile-firefox.common b/www/firefox/Makefile-firefox.common index 7cccaffdc5a..c9dd3cbe832 100644 --- a/www/firefox/Makefile-firefox.common +++ b/www/firefox/Makefile-firefox.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile-firefox.common,v 1.4 2004/10/04 09:11:30 grant Exp $ +# $NetBSD: Makefile-firefox.common,v 1.5 2004/10/16 20:08:48 reed Exp $ MOZILLA_BIN= firefox-bin MOZ_VER= 0.10.1 @@ -30,7 +30,7 @@ BUILD_MATHML= # defined MESSAGE= ${.CURDIR}/../../www/firefox/MESSAGE pre-install: - ${CP} -r ${WRKSRC}/dist/bin/defaults/profile/extensions \ + ${CP} -RL ${WRKSRC}/dist/bin/defaults/profile/extensions \ ${WRKSRC}/dist/bin ${MV} ${WRKSRC}/dist/bin/extensions/installed-extensions.txt \ ${WRKSRC}/dist/bin/extensions/installed-extensions-processed.txt |