diff options
author | jlam <jlam> | 2001-05-19 03:56:23 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-05-19 03:56:23 +0000 |
commit | 14497c4e54ef93397c94971e740cfbe73dd7b82e (patch) | |
tree | 35829def2637f8f91ecdb3daaeecb1424685adf2 /cross | |
parent | db59d15cac4efb5a3898cfd6e08a83dc22ac43ac (diff) | |
download | pkgsrc-14497c4e54ef93397c94971e740cfbe73dd7b82e.tar.gz |
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'cross')
-rw-r--r-- | cross/binutils/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cross/binutils/Makefile b/cross/binutils/Makefile index 20746a7391c..962272374db 100644 --- a/cross/binutils/Makefile +++ b/cross/binutils/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2001/03/13 12:01:43 agc Exp $ +# $NetBSD: Makefile,v 1.27 2001/05/19 03:56:32 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 @@ -45,8 +45,8 @@ ENABLE_TARGETS+= alpha-netbsd arm-netbsd \ # make sure configure/Makefile.in is newer than configure.in/Makefile.am post-patch: - ${FIND} ${WRKSRC} -name configure -print | xargs ${TOUCH} - ${FIND} ${WRKSRC} -name Makefile.in -print | xargs ${TOUCH} + ${FIND} ${WRKSRC} -name configure -print | ${XARGS} ${TOUCH} + ${FIND} ${WRKSRC} -name Makefile.in -print | ${XARGS} ${TOUCH} # check that path does not contain cwd pre-configure: |