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