diff options
author | jlam <jlam@pkgsrc.org> | 2005-06-17 04:49:45 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-06-17 04:49:45 +0000 |
commit | d0915c61c3e5274723f1ab455789fc8891f1bec5 (patch) | |
tree | 60b722189a49bfe1537f12edb5ede23f86aeb41e /cross | |
parent | 9df842d1237e5ab852210ddbb94642641ca27d97 (diff) | |
download | pkgsrc-d0915c61c3e5274723f1ab455789fc8891f1bec5.tar.gz |
Fix inappropriate uses of ${LOCALBASE} or ${X11PREFIX} instead of
${PREFIX}.
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 3232e72a012..993101741dc 100644 --- a/cross/binutils/Makefile +++ b/cross/binutils/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.42 2005/05/22 20:07:44 jlam Exp $ +# $NetBSD: Makefile,v 1.43 2005/06/17 04:49:45 jlam Exp $ # # GNU binutils configured to hold `as many targets as the cross system is # capable of using'. Configures and builds everything except gas, which @@ -74,7 +74,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/bfd/bfd.h ${PREFIX}/include ${INSTALL_DATA} ${WRKSRC}/ld/ldscripts/* ${PREFIX}/lib/ldscripts ${INSTALL_SCRIPT} ${WRKSRC}/cross-env ${BINDIR} - ${LN} -s ${BINDIR}/cross-env ${LOCALBASE}/bin/cross-env + ${LN} -s ${BINDIR}/cross-env ${PREFIX}/bin/cross-env post-build: ${SED} -e 's|@@PREFIX@@|${PREFIX}|' < ${FILESDIR}/cross-env > \ |