diff options
author | mef <mef@pkgsrc.org> | 2014-03-18 15:39:01 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2014-03-18 15:39:01 +0000 |
commit | 44b2c1d2834f0e35a1e3a539de6c41842f398b5d (patch) | |
tree | d2aa3c9876a8456e294078fdac60a9dfc50ed391 /cross | |
parent | d795eef48a2c38555c9a5fe8dc5c0549ed6e81f3 (diff) | |
download | pkgsrc-44b2c1d2834f0e35a1e3a539de6c41842f398b5d.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, 5.1 also accepts jxf.
Diffstat (limited to 'cross')
-rw-r--r-- | cross/nios2-gcc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cross/nios2-gcc/Makefile b/cross/nios2-gcc/Makefile index 3a1e9dd7044..9a55ff7c2d5 100644 --- a/cross/nios2-gcc/Makefile +++ b/cross/nios2-gcc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2013/11/18 06:41:27 mef Exp $ +# $NetBSD: Makefile,v 1.4 2014/03/18 15:39:01 mef Exp $ .include "../../cross/nios2/Makefile.common" PKGNAME= nios2-gcc-${PKG_VERSION} PKG_VERSION= 4.7.3 @@ -46,9 +46,9 @@ SUBST_SED.host-subdir= '-e /host_subdir = @host_subdir@/s,@host_subdir@,host-${ .include "../../math/mpcomplex/buildlink3.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/gcc-2013.05-43.tar.bz2;\ - tar zxf sourceryg++-2013.05-43-nios2-linux-gnu/gcc-2013.05-43.tar.bz2;\ + tar jxf sourceryg++-2013.05-43-nios2-linux-gnu/gcc-2013.05-43.tar.bz2;\ ) # to avoid conflict with binutils (to be fixed by more sophisticated way) |