From 03ca9bd53380b1a70c2baac212a5555c045d8b56 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Wed, 7 Mar 2012 10:40:21 -0500 Subject: [PATCH] does seem to need upper case for CYGWIN variable. possibly just not set early enough. --- scripts/core/variables.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index 5b845db0..995fd0b3 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -152,9 +152,6 @@ if [ -z "$NECHUNG" ]; then fi } - # load in the build environment. - initialize_build_variables - ############## # windoze specific patching up missing things. @@ -162,11 +159,16 @@ if [ -z "$NECHUNG" ]; then if [ "$OS" == "Windows_NT" ]; then export HOSTNAME=$(echo $HOSTNAME | tr A-Z a-z) # turn off warnings about files in dos format. give up cygwin, you're on dos/windows. - export cygwin=nodosfilewarning + export CYGWIN=nodosfilewarning fi ############## + # load in the build environment. + initialize_build_variables + + ############## + # set the path for locating applications. this is done after any # potential overrides from the user. #export PATH="$(dos_to_msys_path $BINDIR):$(dos_to_msys_path $FEISTY_MEOW_GENERATED):$PATH:/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/lib:/usr/games:/usr/bin:." -- 2.34.1