Commit 6efa5fa8c0008add407c9e1e19f42c9689829c0b
1 parent
6a950a6c
Exists in
master
and in
5 other branches
Small fix in the windows build script.
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
win/pack.sh
@@ -5,7 +5,7 @@ LIBRARY_NAME="lib3270" | @@ -5,7 +5,7 @@ LIBRARY_NAME="lib3270" | ||
5 | CORE_LIBRARIES="lib3270 libv3270" | 5 | CORE_LIBRARIES="lib3270 libv3270" |
6 | PACKAGE_PLUGINS="ipc" | 6 | PACKAGE_PLUGINS="ipc" |
7 | PACKAGE_LANGUAGE_BINDINGS="hllapi" | 7 | PACKAGE_LANGUAGE_BINDINGS="hllapi" |
8 | -TARGET_ARCHS="x86_32 x82_64" | 8 | +TARGET_ARCHS="x86_32 x86_64" |
9 | GIT_URL="https://github.com/PerryWerneck" | 9 | GIT_URL="https://github.com/PerryWerneck" |
10 | 10 | ||
11 | PROJECTDIR=$(dirname $(dirname $(readlink -f ${0}))) | 11 | PROJECTDIR=$(dirname $(dirname $(readlink -f ${0}))) |
@@ -123,7 +123,7 @@ buildLibrary() | @@ -123,7 +123,7 @@ buildLibrary() | ||
123 | ;; | 123 | ;; |
124 | 124 | ||
125 | *) | 125 | *) |
126 | - failed "Arquitetura desconhecida: ${1}" | 126 | + failed "Arquitetura desconhecida: ${ARCH}" |
127 | 127 | ||
128 | esac | 128 | esac |
129 | 129 | ||
@@ -207,7 +207,7 @@ buildApplication() | @@ -207,7 +207,7 @@ buildApplication() | ||
207 | ;; | 207 | ;; |
208 | 208 | ||
209 | *) | 209 | *) |
210 | - failed "Arquitetura desconhecida: ${1}" | 210 | + failed "Arquitetura desconhecida: ${ARCH}" |
211 | 211 | ||
212 | esac | 212 | esac |
213 | 213 |