X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fclam%2Fclean_subdirs.sh;h=a438cc08f793af70be2ae659737b334989654a98;hb=7c844961aeace8bc98a39b9deb73fc5dc5c12fe2;hp=00ba783c6d389a7f12d1a182b3b814872132298a;hpb=6b5e7d0c7b8646858be7bf2979b1141178dfb8d5;p=feisty_meow.git diff --git a/scripts/clam/clean_subdirs.sh b/scripts/clam/clean_subdirs.sh old mode 100644 new mode 100755 index 00ba783c..a438cc08 --- a/scripts/clam/clean_subdirs.sh +++ b/scripts/clam/clean_subdirs.sh @@ -11,12 +11,12 @@ function clean_subdirectories() for smoot87 in $(find . -mindepth 1 -maxdepth 1 -type d); do # make sure there's a makefile there. if [ -f "$smoot87/makefile" ]; then -#echo "inside barriers, with filename=$smoot87 and all conditions met." - pushd "$smoot87" - make --silent -I "$CLAM_DIR" NOT_FIRST_MAKE=t clean - popd +#echo -e "\n\n[[inside barriers, with filename=$burlap51 and all conditions met]]\n\n" + pushd "$smoot87" &>/dev/null + make --silent -I "$CLAM_SCRIPTS" NOT_FIRST_MAKE=t clean + popd &>/dev/null else - echo "Skipping makefile-less directory $smoot87..." + echo "(skipping directory $smoot87)" fi done }