From: Jose V Beneyto Date: Thu, 28 Apr 2011 17:41:29 +0000 (+0200) Subject: getBuildOrder.sh: fixed for 2.7 branches X-Git-Url: http://gitweb/?a=commitdiff_plain;h=f637bdc02619b5786d81ad9d0b46e92ece9f4b35;p=devtools.git getBuildOrder.sh: fixed for 2.7 branches --- diff --git a/getBuildOrder.sh b/getBuildOrder.sh index cca2c9e..86af3fd 100755 --- a/getBuildOrder.sh +++ b/getBuildOrder.sh @@ -11,7 +11,7 @@ getRecursiveDeps() { local deps="$(getDeps $pkg)" if [ -z "$deps" ]; then case $pkg in - libgmp|libmpfr|binutils|glibc|gcc) + libgmp|libmpfr|libmpc|binutils|glibc|zlib|gcc) # discard these ports ;; *) @@ -29,12 +29,12 @@ getRecursiveDeps() { } # global var to store all final deps order -BUILD_ORDER="libgmp libmpfr binutils glibc gcc" +BUILD_ORDER="libgmp libmpfr libmpc binutils glibc zlib gcc" for f in *; do [ ! -d "$f" ] && continue case $f in - libgmp|libmpfr|binutils|glibc|gcc) continue ;; + libgmp|libmpfr|libmpc|binutils|glibc|zlib|gcc) continue ;; esac getRecursiveDeps "$f" done