summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2014-03-18 15:24:44 (EDT)
committer P. J. McDermott <pjm@nac.net>2014-03-18 15:24:44 (EDT)
commit9e85363722455a6376752eab77b86c833ed7cdb5 (patch)
tree187c05ad1936b1ec370405dd2f3933ab18f6dd14
parent672c75dec5ad20298175d57ca7024be77a876c82 (diff)
bootstrap-stage1-install.sh: Fix var name.
-rwxr-xr-xbootstrap-stage1-install.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap-stage1-install.sh b/bootstrap-stage1-install.sh
index dadbbe9..9455fcc 100755
--- a/bootstrap-stage1-install.sh
+++ b/bootstrap-stage1-install.sh
@@ -88,7 +88,7 @@ install_packages()
../pkg/*_all_${PLAT}.opk ../pkg/*_all_all.opk; do
[ -f "${opk}" ] || continue
pkg="${opk#../pkg/}"
- case "${opk}" in
+ case "${pkg}" in
"build-essential-${ARCH}_"*) ;;
'build-essential-common_'*) ;;
'build-essential-'*) continue ;;
@@ -144,7 +144,7 @@ configure_packages()
../pkg/*_all_${PLAT}.opk ../pkg/*_all_all.opk; do
[ -f "${opk}" ] || continue
pkg="${opk#../pkg/}"
- case "${opk}" in
+ case "${pkg}" in
"build-essential-${ARCH}_"*) ;;
'build-essential-common_'*) ;;
'build-essential-'*) continue ;;