X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Fvariables.sh;h=f3c1972a8cae23b67f9bc14cc9abfffa4d406ad9;hb=bffe9fba70b7ea1ab1b5d963b811d4637b021ee1;hp=dd9adc273435461b82ae6f1c638ba0a7492db391;hpb=ccf0ad0ecce7f27f4cd09f4b57061aea19323dc3;p=feisty_meow.git diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index dd9adc27..f3c1972a 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -37,6 +37,22 @@ if [ -z "$NECHUNG" ]; then fi export IS_DARWIN=$(echo $OSTYPE | grep -i darwin) + ############## + + # guess the current platform. + IS_UNIX=$(uname | grep -i linux) + if [ -z "$IS_UNIX" ]; then IS_UNIX=$(uname | grep -i unix); fi + if [ -z "$IS_UNIX" ]; then IS_UNIX=$(uname | grep -i darwin); fi + IS_DOS=$(uname | grep -i ming) + if [ -z "$IS_DOS" ]; then IS_DOS=$(uname | grep -i cygwin); fi + + # now if we're stuck in DOS, try to determine the type of system. + if [ ! -z "$IS_DOS" ]; then + # IS_MSYS will be non-empty if this is the msys toolset. otherwise + # we assume that it's cygwin. + IS_MSYS=$(uname | grep -i ming) + fi + ############## # fallbacks to set crucial variables for feisty meow... @@ -134,20 +150,12 @@ if [ -z "$NECHUNG" ]; then fi # now augment the environment if we found our build variables. if [ $found_build_vars == 1 ]; then - # the binary directory contains handy programs we use a lot in yeti. we set up the path to it - # here based on the operating system. - # note that yeti has recently become more dependent on hoople. hoople was always the source of - # the binaries, but now we don't ship them with yeti any more as pre-built items. this reduces - # the size of the code package a lot and shortens up our possible exposure to compromised - # binaries. people can bootstrap up their own set from hoople now instead. + # the binary directory contains handy programs we use a lot. we set + # up the path to it here based on the operating system. export BINDIR=$FEISTY_MEOW_DIR/production/binaries - # add binaries created within build to the path. -# export PATH="$(dos_to_msys_path $BUILD_TOP/build/bin):$PATH" export PATH="$BINDIR:$PATH" - # Shared libraries are located via this variable. -# export LD_LIBRARY_PATH="$(dos_to_msys_path $LD_LIBRARY_PATH):$(dos_to_msys_path $BINDIR)" export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$BINDIR" fi } @@ -176,7 +184,7 @@ if [ -z "$NECHUNG" ]; then ############## # set the SHUNIT_DIR so our shunit tests can find the codebase. - export SHUNIT_DIR="$FEIST_MEOW_SCRIPTS/shunit" + export SHUNIT_DIR="$FEISTY_MEOW_SCRIPTS/shunit" ##############