X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Fvariables.sh;h=f40dfc4f81dc76486b5f320fb4b7bb030e33ac28;hb=dc218f31310e5fa1bec2091c1cd29f6772c40336;hp=1a9d5b396f5418845033bdaa15820c40da676acb;hpb=3542292094805daff588c60ac398eadb67cf1b73;p=feisty_meow.git diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index 1a9d5b39..f40dfc4f 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -134,20 +134,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 } @@ -173,6 +165,11 @@ if [ -z "$NECHUNG" ]; then export PATH="$FEISTY_MEOW_GENERATED:$PATH:/sbin:." ###noise! :/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/lib:/usr/games:/usr/bin:. + ############## + + # set the SHUNIT_DIR so our shunit tests can find the codebase. + export SHUNIT_DIR="$FEISTY_MEOW_SCRIPTS/shunit" + ############## if [ ! -z "$SHELL_DEBUG" ]; then echo variables initialization ends....; fi