From f637bdc02619b5786d81ad9d0b46e92ece9f4b35 Mon Sep 17 00:00:00 2001 From: Jose V Beneyto Date: Thu, 28 Apr 2011 19:41:29 +0200 Subject: [PATCH 1/1] getBuildOrder.sh: fixed for 2.7 branches --- getBuildOrder.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.26.2