X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fgenerator%2Fproduce_feisty_meow.sh;h=3985f0957d7a6336e74bc80bf982f4b13f48d662;hb=ef5c4c4e80db9a02cb23c756bd2ab8787b98d5f5;hp=712713715f94fdbcbd33ea283ddaa601aeeebeaf;hpb=6be37d77a676e088a98e1b9cf8001c50db9994c8;p=feisty_meow.git diff --git a/scripts/generator/produce_feisty_meow.sh b/scripts/generator/produce_feisty_meow.sh index 71271371..3985f095 100644 --- a/scripts/generator/produce_feisty_meow.sh +++ b/scripts/generator/produce_feisty_meow.sh @@ -88,7 +88,7 @@ function update_system_helper_header() fi # set the cygwin root path if we're on cygwin. - whichable cygpath + whichable cygpath &>/dev/null if [ $? -eq 0 ]; then # found cygpath, so run it now to get the dossy path of the root ('/' folder). found_root="$(cygpath -w -m /)" @@ -96,17 +96,17 @@ function update_system_helper_header() echo "Failure to find virtual Unix root folder with cygpath." exit 1322 fi -echo "found root as '$found_root'" +#echo "found root as '$found_root'" # translate any backslashes to forward thinking slashes. found_root="$(echo $found_root | tr '\\' '/')" -echo "processed root is now: '$found_root'" +#echo "processed root is now: '$found_root'" # edit the entry in place to correct the default path. sed -i \ -e "s% *#define FEISTY_MEOW_VIRTUAL_UNIX_ROOT \".*$%#define FEISTY_MEOW_VIRTUAL_UNIX_ROOT \"$found_root\"%" \ "$FEISTY_MEOW_BINARIES/system_helper.h" exit_on_error "updating system_helper header in $FEISTY_MEOW_BINARIES" -echo "system helper file now has:" -cat "$FEISTY_MEOW_BINARIES/system_helper.h" +#echo "system helper file now has:" +#cat "$FEISTY_MEOW_BINARIES/system_helper.h" fi }