fixed for cleaning up the .a files
[feisty_meow.git] / scripts / clam / clean_subdirs.sh
index 00ba783c6d389a7f12d1a182b3b814872132298a..45d2c1e1cae9b8a42b33ecfac2c03ebe3c4a460c 100755 (executable)
@@ -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"
+#echo -e "\n\n[[inside barriers, with filename=$burlap51 and all conditions met]]\n\n"
+      pushd "$smoot87" &>/dev/null
       make --silent -I "$CLAM_DIR" NOT_FIRST_MAKE=t clean
-      popd
+      popd &>/dev/null
     else
-      echo "Skipping makefile-less directory $smoot87..."
+      echo "(skipping directory $smoot87)"
     fi
   done
 }