pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/cross/binutils Use for + install instead of just a sin...
details: https://anonhg.NetBSD.org/pkgsrc/rev/fc28533fa649
branches: trunk
changeset: 504829:fc28533fa649
user: joerg <joerg%pkgsrc.org@localhost>
date: Fri Dec 23 17:41:41 2005 +0000
description:
Use for + install instead of just a single install to work around
argument size limitations. With over 1000 files to install, the default
limit of 65535 byte on DragonFly is clearly not enough for normal path
names.
diffstat:
cross/binutils/Makefile | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r fc35dd9a7b18 -r fc28533fa649 cross/binutils/Makefile
--- a/cross/binutils/Makefile Fri Dec 23 16:59:46 2005 +0000
+++ b/cross/binutils/Makefile Fri Dec 23 17:41:41 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.45 2005/12/05 20:49:56 rillig Exp $
+# $NetBSD: Makefile,v 1.46 2005/12/23 17:41:41 joerg Exp $
#
# GNU binutils configured to hold `as many targets as the cross system is
# capable of using'. Configures and builds everything except gas, which
@@ -72,7 +72,7 @@
${INSTALL_DATA} ${WRKSRC}/include/ansidecl.h ${PREFIX}/include
${INSTALL_DATA} ${WRKSRC}/include/symcat.h ${PREFIX}/include
${INSTALL_DATA} ${WRKSRC}/bfd/bfd.h ${PREFIX}/include
- ${INSTALL_DATA} ${WRKSRC}/ld/ldscripts/* ${PREFIX}/lib/ldscripts
+ for f in ${WRKSRC}/ld/ldscripts/*; do ${INSTALL_DATA} $${f} ${PREFIX}/lib/ldscripts; done
${INSTALL_SCRIPT} ${WRKSRC}/cross-env ${BINDIR}
${LN} -s ${BINDIR}/cross-env ${LOCALBASE}/bin/cross-env
Home |
Main Index |
Thread Index |
Old Index