diff options
author | P. J. McDermott <pjm@nac.net> | 2014-03-18 15:19:27 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2014-03-18 15:19:27 (EDT) |
commit | 672c75dec5ad20298175d57ca7024be77a876c82 (patch) | |
tree | 8c384db3edcf7b54ee17888c25aa499794b80ea8 | |
parent | fde5b66ff7577ed2e53d5eafe8f52c14103ab4ba (diff) |
bootstrap-stage1-install.sh: Again skip cross pkg.
-rwxr-xr-x | bootstrap-stage1-install.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bootstrap-stage1-install.sh b/bootstrap-stage1-install.sh index 7be7d8c..dadbbe9 100755 --- a/bootstrap-stage1-install.sh +++ b/bootstrap-stage1-install.sh @@ -88,6 +88,11 @@ install_packages() ../pkg/*_all_${PLAT}.opk ../pkg/*_all_all.opk; do [ -f "${opk}" ] || continue pkg="${opk#../pkg/}" + case "${opk}" in + "build-essential-${ARCH}_"*) ;; + 'build-essential-common_'*) ;; + 'build-essential-'*) continue ;; + esac log 'Installing package %s...' "${pkg%%_*}" tar -xzOf "${opk}" data.tar.gz | tar -xz done @@ -139,6 +144,11 @@ configure_packages() ../pkg/*_all_${PLAT}.opk ../pkg/*_all_all.opk; do [ -f "${opk}" ] || continue pkg="${opk#../pkg/}" + case "${opk}" in + "build-essential-${ARCH}_"*) ;; + 'build-essential-common_'*) ;; + 'build-essential-'*) continue ;; + esac pkg="${pkg%%_*}" for entry in $(tar -xzOf "${opk}" control.tar.gz | tar -tz); do file="${entry##*/}" |