diff options
author | rillig <rillig@pkgsrc.org> | 2006-02-02 19:17:44 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-02-02 19:17:44 +0000 |
commit | 342f301f22ee56d477adf7dc10ac5632c49e4c15 (patch) | |
tree | 8dba50f404a671eae6fb916dd9e82a1234404051 /cross/i386-linux | |
parent | 68afefceab2de93d9a5049a964affbb7d4877e4f (diff) | |
download | pkgsrc-342f301f22ee56d477adf7dc10ac5632c49e4c15.tar.gz |
Use ${LOCALBASE}/bin/rpm2cpio instead of the plain rpm2cpio. It could not
be found before unless ${LOCALBASE}/bin was in the PATH.
Diffstat (limited to 'cross/i386-linux')
-rw-r--r-- | cross/i386-linux/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cross/i386-linux/Makefile b/cross/i386-linux/Makefile index d064b6182be..2e2a8b2de47 100644 --- a/cross/i386-linux/Makefile +++ b/cross/i386-linux/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2005/12/05 20:49:56 rillig Exp $ +# $NetBSD: Makefile,v 1.22 2006/02/02 19:17:44 rillig Exp $ # DISTVERSION= 2.0.7.1 @@ -33,7 +33,7 @@ LDFLAGS_FOR_TARGET= -Wl,-rpath-link=${SYS_LIB} post-extract: @cd ${WRKDIR}; \ for file in ${LINUXDEVEL_FILES}; do \ - rpm2cpio ${_DISTDIR}/$$file | cpio -id; \ + ${LOCALBASE}/bin/rpm2cpio ${_DISTDIR}/$$file | cpio -id; \ done @cd ${WRKDIR}/lib && ${MV} -f * ${SYS_LIB} @cd ${CROSS_SYS_INCLUDE} && ${RM} -f asm linux scsi |