pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/firefox Use cp(1)'s -RL instead of -r, because cor...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b3488f3a8855
branches:  trunk
changeset: 481999:b3488f3a8855
user:      reed <reed%pkgsrc.org@localhost>
date:      Sat Oct 16 20:08:48 2004 +0000

description:
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:

 www/firefox/Makefile-firefox.common |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 8518a48c7a72 -r b3488f3a8855 www/firefox/Makefile-firefox.common
--- a/www/firefox/Makefile-firefox.common       Sat Oct 16 19:47:49 2004 +0000
+++ b/www/firefox/Makefile-firefox.common       Sat Oct 16 20:08:48 2004 +0000
@@ -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 @@
 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



Home | Main Index | Thread Index | Old Index