X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Fvariables.sh;h=bd11c4654303377fef87642661c470262b2d0b98;hb=c6174955bb34c94dd89bc36da8244e3635312e22;hp=1ec14e315a10576d16c55fa61ec9c6f0e0f21a6b;hpb=b4b77f8dda5d32d43c0a1dd66f9a165b64cacb09;p=feisty_meow.git diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index 1ec14e31..bd11c465 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -106,18 +106,18 @@ if [ -z "$CORE_VARIABLES_LOADED" ]; then fi # set up the top-level for all build creations and logs and such. - if [ -z "$GENERATED_DIR" ]; then - define_yeti_variable GENERATED_DIR="$TMP/generated-feisty_meow" + if [ -z "$GENERATED_STORE" ]; then + define_yeti_variable GENERATED_STORE="$TMP/generated-feisty_meow" fi - if [ ! -d "$GENERATED_DIR" ]; then - mkdir -p "$GENERATED_DIR" + if [ ! -d "$GENERATED_STORE" ]; then + mkdir -p "$GENERATED_STORE" fi # set up our effluent outsourcing valves. - if [ -z "$TEMPORARIES_DIR" ]; then - define_yeti_variable TEMPORARIES_DIR="$GENERATED_DIR/temporaries" + if [ -z "$TEMPORARIES_PILE" ]; then + define_yeti_variable TEMPORARIES_PILE="$GENERATED_STORE/temporaries" fi - if [ ! -d "$TEMPORARIES_DIR" ]; then - mkdir -p "$TEMPORARIES_DIR" + if [ ! -d "$TEMPORARIES_PILE" ]; then + mkdir -p "$TEMPORARIES_PILE" fi # similarly, make sure we have someplace to look for our generated files, if @@ -183,8 +183,8 @@ if [ -z "$CORE_VARIABLES_LOADED" ]; then # set this so nechung can find its data. define_yeti_variable NECHUNG=$FEISTY_MEOW_APEX/infobase/fortunes.dat - # establish a pipe for less to see our beloved syntax highlighting. - define_yeti_variable LESSOPEN="| source-highlight -f esc -o STDOUT -i %s" +## # establish a pipe for less to see our beloved syntax highlighting. +## define_yeti_variable LESSOPEN="| source-highlight -f esc -o STDOUT -i %s" # ensure we use the right kind of secure shell. # define_yeti_variable CVS_RSH=$FEISTY_MEOW_SCRIPTS/security/ssh.sh @@ -212,7 +212,7 @@ if [ -z "$CORE_VARIABLES_LOADED" ]; then # now augment the environment if we found our build variables. if [ $found_build_vars == 1 ]; then # the binary directory contains our collection of handy programs. - define_yeti_variable FEISTY_MEOW_BINARIES=$TARGETS_DIR + define_yeti_variable FEISTY_MEOW_BINARIES=$TARGETS_STORE # add binaries created within build to the path. define_yeti_variable PATH="$(dos_to_unix_path $FEISTY_MEOW_BINARIES):$PATH" # Shared libraries are located via this variable. @@ -241,8 +241,8 @@ if [ -z "$CORE_VARIABLES_LOADED" ]; then ############## - # set the SHUNIT_DIR so our shunit tests can find the codebase. - define_yeti_variable SHUNIT_DIR="$FEISTY_MEOW_SCRIPTS/shunit" + # set the SHUNIT_PATH so our shunit tests can find the codebase. + define_yeti_variable SHUNIT_PATH="$FEISTY_MEOW_SCRIPTS/shunit" ##############