diff options
author | jschauma <jschauma@pkgsrc.org> | 2002-10-14 14:22:50 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2002-10-14 14:22:50 +0000 |
commit | db34f0b75d35bdde60d73d18acf3009e73fce2a4 (patch) | |
tree | 510455ba8645403b3cf10e5e6a50c0cc703a555e /www | |
parent | b1702f40037ebd1c341cd52bcf21aa712fc916b0 (diff) | |
download | pkgsrc-db34f0b75d35bdde60d73d18acf3009e73fce2a4.tar.gz |
Linux' find wants the dir as the first argument, NetBSD find wants
'-d' first. Adjust FIND_ARG accordingly. Problem noted by Martti
Kupparinen.
Diffstat (limited to 'www')
-rw-r--r-- | www/netscape7/Makefile | 4 | ||||
-rw-r--r-- | www/netscape7/Makefile.Linux.i386 | 4 | ||||
-rw-r--r-- | www/netscape7/Makefile.NetBSD.i386 | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/www/netscape7/Makefile b/www/netscape7/Makefile index cc5bb71a19d..acf0b6a585b 100644 --- a/www/netscape7/Makefile +++ b/www/netscape7/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2002/10/11 20:50:42 jschauma Exp $ +# $NetBSD: Makefile,v 1.11 2002/10/14 14:22:50 jschauma Exp $ # DISTNAME= netscape-i686-pc-linux-gnu-sea @@ -70,7 +70,7 @@ pre-install: @${ECHO} "@unexec \$${RM} %D/lib/netscape/netscape7/components/xpti.dat 2>/dev/null || \$${TRUE}" \ >> ${PLIST_SRC} @cd ${INSTDIR} && \ - ${FIND} . ${FIND_ARG} \( -type d ! -name "." \) \ + ${FIND} ${FIND_ARG} \( -type d ! -name "." \) \ -print | \ ${SED} -e 's,^\.,@dirrm lib/netscape/netscape7,' >> \ ${PLIST_SRC} diff --git a/www/netscape7/Makefile.Linux.i386 b/www/netscape7/Makefile.Linux.i386 index d0e7ced4e41..a89fc12330b 100644 --- a/www/netscape7/Makefile.Linux.i386 +++ b/www/netscape7/Makefile.Linux.i386 @@ -1,11 +1,11 @@ -# $NetBSD: Makefile.Linux.i386,v 1.6 2002/10/11 20:50:42 jschauma Exp $ +# $NetBSD: Makefile.Linux.i386,v 1.7 2002/10/14 14:22:50 jschauma Exp $ # DIST_DIR_NAME= linux22 DEPENDS+= gtk+>=1.2.10:../../x11/gtk INSTDIR= ${WRKSRC}/dest -FIND_ARG= -depth +FIND_ARG= . -depth post-extract: ${MKDIR} ${WRKSRC}/dest diff --git a/www/netscape7/Makefile.NetBSD.i386 b/www/netscape7/Makefile.NetBSD.i386 index e53c6ed0993..e3506193e51 100644 --- a/www/netscape7/Makefile.NetBSD.i386 +++ b/www/netscape7/Makefile.NetBSD.i386 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.NetBSD.i386,v 1.5 2002/10/11 20:50:42 jschauma Exp $ +# $NetBSD: Makefile.NetBSD.i386,v 1.6 2002/10/14 14:22:50 jschauma Exp $ # DIST_DIR_NAME= linux22 @@ -8,7 +8,7 @@ DEPENDS+= suse_x11>=7.3:../../emulators/${SUSE_DIR_PREFIX}_x11 DEPENDS+= suse_gtk>=7.3:../../emulators/${SUSE_DIR_PREFIX}_gtk MESSAGE_SRC= ${PKGDIR}/MESSAGE.${OPSYS} -FIND_ARG= -d +FIND_ARG= -d . # installing over emulation files doesn't work (huh?), so clean out any # existing files first |