Gitweb links:
...log
http://git.netsurf-browser.org/toolchains.git/shortlog/04e12e28d9e4b86d277c46050faf3cbb235161bc
...commit
http://git.netsurf-browser.org/toolchains.git/commit/04e12e28d9e4b86d277c46050faf3cbb235161bc
...tree
http://git.netsurf-browser.org/toolchains.git/tree/04e12e28d9e4b86d277c46050faf3cbb235161bc
The branch, ashmew2/kolibrios has been updated
via 04e12e28d9e4b86d277c46050faf3cbb235161bc (commit)
from 0d9d471b107efcd1c30aee66048cf1fa27ddbaa1 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/toolchains.git/commit/?id=04e12e28d9e4b86d277c46050faf3cbb235161bc
commit 04e12e28d9e4b86d277c46050faf3cbb235161bc
Author: Ashish Gupta <[email protected]>
Commit: Ashish Gupta <[email protected]>
Fix toolchains
diff --git a/kos32-gcc/build.sh b/kos32-gcc/build.sh
index d270837..5734838 100755
--- a/kos32-gcc/build.sh
+++ b/kos32-gcc/build.sh
@@ -27,11 +27,12 @@ done
# download sdk and friends
svn checkout ${SVN_URL} ${SVN_CHECKOUT}
wget -v ${COMPILER_URL} --directory-prefix=${CROSS_PATH}
-wget -v ${SDK_URL} --directory-prefix=${INSTALL_PATH}
+wget -v ${SDK_URL} --directory-prefix=${CROSS_PATH}
# verify checksums
for file in COMPILER SDK; do
- [[ $(sha1sum $INSTALL_PATH/${!file} | awk '{print $1}') !=
${!SHA512_${!file}} ]] && exit 1
+ VARNAME=SHA512_${file}
+ [[ $(sha512sum $CROSS_PATH/${!file} | awk '{print $1}') != ${!VARNAME}
]] && exit 1
done
# set up toolchain
-----------------------------------------------------------------------
Summary of changes:
kos32-gcc/build.sh | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/kos32-gcc/build.sh b/kos32-gcc/build.sh
index d270837..5734838 100755
--- a/kos32-gcc/build.sh
+++ b/kos32-gcc/build.sh
@@ -27,11 +27,12 @@ done
# download sdk and friends
svn checkout ${SVN_URL} ${SVN_CHECKOUT}
wget -v ${COMPILER_URL} --directory-prefix=${CROSS_PATH}
-wget -v ${SDK_URL} --directory-prefix=${INSTALL_PATH}
+wget -v ${SDK_URL} --directory-prefix=${CROSS_PATH}
# verify checksums
for file in COMPILER SDK; do
- [[ $(sha1sum $INSTALL_PATH/${!file} | awk '{print $1}') !=
${!SHA512_${!file}} ]] && exit 1
+ VARNAME=SHA512_${file}
+ [[ $(sha512sum $CROSS_PATH/${!file} | awk '{print $1}') != ${!VARNAME}
]] && exit 1
done
# set up toolchain
--
Cross-compilation toolchains and environments
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org