diff options
author | joerg <joerg@pkgsrc.org> | 2005-12-23 17:41:41 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-12-23 17:41:41 +0000 |
commit | a33c1dbeb57533c7b86ad357da843394baac3050 (patch) | |
tree | 9b6d7c16e605ed14051228ba51ad8fe342382956 /cross | |
parent | ff810db8f20202a2fd55ca0129c47439c83e6ece (diff) | |
download | pkgsrc-a33c1dbeb57533c7b86ad357da843394baac3050.tar.gz |
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 (limited to 'cross')
-rw-r--r-- | cross/binutils/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cross/binutils/Makefile b/cross/binutils/Makefile index 629d643345f..90bc553909c 100644 --- a/cross/binutils/Makefile +++ b/cross/binutils/Makefile @@ -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 @@ do-install: ${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 |