From: Lawrence S. <ljs...@us...> - 2017-03-12 02:45:53
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 1c5450162ebb7b7a4f24fbf8cb0ee408b587171c (commit) from 44bd3f3def622e724a90e7786a1f7e16986e0034 (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 ----------------------------------------------------------------- commit 1c5450162ebb7b7a4f24fbf8cb0ee408b587171c Author: Lawrence Sebald <ljs...@us...> Date: Sat Mar 11 21:45:29 2017 -0500 Fix bin2o's use of an incorrect environment variable. ----------------------------------------------------------------------- Summary of changes: utils/bin2o/bin2o | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/utils/bin2o/bin2o b/utils/bin2o/bin2o index af5e3de..9ee444c 100755 --- a/utils/bin2o/bin2o +++ b/utils/bin2o/bin2o @@ -9,7 +9,7 @@ if [ $# != 3 ]; then exit 0 fi -for i in KOS_ARCH KOS_AS KOS_ASFLAGS KOS_LD; do +for i in KOS_ARCH KOS_AS KOS_AFLAGS KOS_LD; do if [ -z "$(eval "echo \"\$$i\"")" ]; then echo "Environment variable $i is undefined." error=1 @@ -45,4 +45,3 @@ elif [ "$KOS_ARCH" = ps2 ]; then fi rm -f /tmp/script.ld - hooks/post-receive -- A pseudo Operating System for the Dreamcast. |