diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-05-17 20:32:23 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-05-17 20:32:23 (GMT) |
commit | b3b83059e7c62339712e71294662cd3fa883f0db (patch) | |
tree | 92e48946ae7a2bb48428f3cc9df7937b08998af1 /scripts/release-common.sh | |
parent | be87d30f427a4ffff8a21c3871e0304670443710 (diff) |
tweaks to improve build. alos update about.html docs
Diffstat (limited to 'scripts/release-common.sh')
-rwxr-xr-x | scripts/release-common.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/release-common.sh b/scripts/release-common.sh index 85b719c..a9fb3b5 100755 --- a/scripts/release-common.sh +++ b/scripts/release-common.sh @@ -48,17 +48,19 @@ elif [[ $OSTYPE == "linux-gnu" ]]; then else ARCH=32 fi - echo "Detected ARCH: $ARCH" + echo "Detected build-machine ARCH: $ARCH" fi if [ "`echo $* | grep mingw32`" ]; then OS=LINXWIN ARCH=32 + echo Mingw-cross build using ARCH=32 fi if [ "`echo $* | grep mingw64`" ]; then OS=LINXWIN ARCH=64 + echo Mingw-cross build using ARCH=64 fi if [ $OS ]; then |