diff options
author | Piotr Esden-Tempski <piotr@esden.net> | 2010-10-25 16:27:01 -0700 |
---|---|---|
committer | Piotr Esden-Tempski <piotr@esden.net> | 2010-10-25 16:27:01 -0700 |
commit | f191ef3092b06deed9278b3fe062f75c8725a6f7 (patch) | |
tree | 3ecea1e0f212d6abec362820feae1f61bad48396 | |
parent | 65871ede4910ba4557b33ef2bb005adcca614232 (diff) |
Added --use-system-zlib to fix compilation on debian unstable.
-rwxr-xr-x | summon-arm-toolchain | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/summon-arm-toolchain b/summon-arm-toolchain index f1ddff0..2a70d09 100755 --- a/summon-arm-toolchain +++ b/summon-arm-toolchain @@ -240,6 +240,7 @@ if [ ! -e ${STAMPS}/${GCC}-boot.build ]; then --with-gnu-ld \ --disable-nls \ --disable-werror \ + --with-system-zlib \ ${GCCFLAGS} log "Building ${GCC}-boot" make ${MAKEFLAGS} all-gcc @@ -288,6 +289,7 @@ if [ ! -e ${STAMPS}/${GCC}.build ]; then --with-gnu-ld \ --disable-nls \ --disable-werror \ + --with-system-zlib \ ${GCCFLAGS} log "Building ${GCC}" make ${MAKEFLAGS} |