diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-05-15 19:01:34 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-05-15 19:01:34 -0300 |
commit | 525be0104660ebcf8773e4cfb83184dde1d18bce (patch) | |
tree | 52c039d1faf687484721a3bce9d99e3378eb0767 | |
parent | 54dc83c0c9a791132cf88ad1513a810401fb57ab (diff) |
cross-mips64el-unknown-linux-gnu-gcc1
unset CFLAGS
-rw-r--r-- | cross-mips64el-unknown-linux-gnu-gcc1/PKGBUILD | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cross-mips64el-unknown-linux-gnu-gcc1/PKGBUILD b/cross-mips64el-unknown-linux-gnu-gcc1/PKGBUILD index 8ecacb3..290a050 100644 --- a/cross-mips64el-unknown-linux-gnu-gcc1/PKGBUILD +++ b/cross-mips64el-unknown-linux-gnu-gcc1/PKGBUILD @@ -10,7 +10,9 @@ pkgver=4.5.3 pkgrel=1 pkgdesc="The GNU C Compiler for $_target stage1" arch=(i686 x86_64) +license=(GPL) makedepends=("cross-${_target}-binutils") +options=(!strip) source=(http://ftp.gnu.org/gnu/$_pkgname/$_pkgname-$pkgver/$_pkgname-$pkgver.tar.bz2) build() { @@ -19,10 +21,11 @@ build() { unset CFLAGS CXXFLAGS - mkdir build + [[ $NOEXTRACT -eq 1 ]] || mkdir build cd build - ../$_pkgname-$pkgver/configure \ +# No bindir + [[ $NOEXTRACT -eq 1 ]] || ../$_pkgname-$pkgver/configure \ --prefix=$_sysroot \ --target=$_target \ --disable-bootstrap \ |