X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fclam%2Fcpp%2Frebuild_oldies.sh;h=0edc0072dd505cf4770a237b02d1af092e8678bd;hb=7c7d191539d4e5a94c4b39433e32b05deab44f24;hp=b502a38dac35cdda0f1ad99bed96fbb5c2a0e4e3;hpb=8f4a9f51cb240261e612504322fa250adf184884;p=feisty_meow.git diff --git a/scripts/clam/cpp/rebuild_oldies.sh b/scripts/clam/cpp/rebuild_oldies.sh index b502a38d..0edc0072 100644 --- a/scripts/clam/cpp/rebuild_oldies.sh +++ b/scripts/clam/cpp/rebuild_oldies.sh @@ -1,12 +1,12 @@ #!/bin/bash if [ -f "$BUILD_LIST_FILE" ]; then - echo Compiling [$(cat $BUILD_LIST_FILE | while read line; do echo $(basename $line); done )] + echo Compiling Objects [$(cat $BUILD_LIST_FILE | while read input_text; do echo $(basename $input_text); done )] rm -f $(cat $BUILD_WHACK_FILE) #echo got line to run: $* - eval $* + eval "${@}" rm -f $BUILD_LIST_FILE $BUILD_WHACK_FILE if [ $? -ne 0 ]; then - . "$CLAM_DIR/exit_make.sh" + . "$CLAM_SCRIPTS/exit_make.sh" fi fi