diff options
author | mef <mef@pkgsrc.org> | 2014-03-18 15:34:04 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2014-03-18 15:34:04 +0000 |
commit | d795eef48a2c38555c9a5fe8dc5c0549ed6e81f3 (patch) | |
tree | 26d62df95fce0415786149ae0115fb4b1ab8c9f3 | |
parent | 6fb628f3ff53896761809f4fd926dcb6caac3509 (diff) | |
download | pkgsrc-d795eef48a2c38555c9a5fe8dc5c0549ed6e81f3.tar.gz |
The option jxf of tar is necessary to read *.bz2 on some systems, for example, Linux:
http://us-east.manta.joyent.com/pkgsrc/public/reports/Linux/el6/trunk/x86_64/20140314.1310/nios2-binutils-2.23/configure.log
NetBSD 6.1.3, 5.2 and 5.1 also accept jxf.
-rw-r--r-- | cross/nios2-binutils/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cross/nios2-binutils/Makefile b/cross/nios2-binutils/Makefile index 399c4ffd93b..dc9672df9f6 100644 --- a/cross/nios2-binutils/Makefile +++ b/cross/nios2-binutils/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2014/01/28 11:48:34 obache Exp $ +# $NetBSD: Makefile,v 1.7 2014/03/18 15:34:04 mef Exp $ .include "../../cross/nios2/Makefile.common" PKGNAME= nios2-binutils-${PKG_VERSION} PKG_VERSION= 2.23 @@ -39,9 +39,9 @@ GNU_CONFIGURE_INFODIR= ${NIOS_INFO_DIR} .include "options.mk" do-extract: - (cd ${WRKDIR}; tar zxf ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} \ + (cd ${WRKDIR}; tar jxf ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} \ sourceryg++-2013.05-43-nios2-linux-gnu/binutils-2013.05-43.tar.bz2;\ - tar zxf sourceryg++-2013.05-43-nios2-linux-gnu/binutils-2013.05-43.tar.bz2;\ + tar jxf sourceryg++-2013.05-43-nios2-linux-gnu/binutils-2013.05-43.tar.bz2;\ ) # following file installed is reference only, not used at all for the moment |