From: Chris Koeritz Date: Wed, 7 Mar 2012 15:40:21 +0000 (-0500) Subject: does seem to need upper case for CYGWIN variable. possibly just not set early enough. X-Git-Tag: 2.140.90~1509 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=03ca9bd53380b1a70c2baac212a5555c045d8b56;p=feisty_meow.git does seem to need upper case for CYGWIN variable. possibly just not set early enough. --- 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:."