safed a remove statement, other cleaning.
authorChris Koeritz <fred@gruntose.com>
Tue, 4 Oct 2016 04:51:59 +0000 (00:51 -0400)
committerChris Koeritz <fred@gruntose.com>
Tue, 4 Oct 2016 04:51:59 +0000 (00:51 -0400)
scripts/clam/cpp/rules.def
scripts/core/functions.sh

index 85602532793c7291ecd245b2236a023e6e320eb7..208728d9cb54e9ff718a367297f31fcfde68331b 100644 (file)
@@ -246,7 +246,7 @@ ifeq "$(COMPILER)" "VISUAL_CPP"
     LOCAL_HEADERS += $(THIRD_PARTY_DIR)/openssl/include
     LIBRARY_SEARCH_PATH += $(THIRD_PARTY_DIR)/openssl/lib
     LIBS_USED += libcrypto.lib libssl.lib
-    $(shell cp $(THIRD_PARTY_DIR)/openssl/lib/*dll $(EXECUTABLE_DIR) )
+#no, yuck.    $(shell cp $(THIRD_PARTY_DIR)/openssl/lib/*dll $(EXECUTABLE_DIR) )
   endif
   
 endif
index 629bd59bec4a33088421470236591cfa1dcafa97..65aa94106950201e7d9d34700b501f86c85afdb9 100644 (file)
@@ -547,7 +547,9 @@ if [ -z "$skip_all" ]; then
   {
     local dir="$1"; shift
     pushd "$dir" &>/dev/null
+    if [ $? -ne 0 ]; then echo failed to enter dir--quitting.; fi
     rm -rf $* &>/dev/null
+    if [ $? -ne 0 ]; then echo received a failure code when removing.; fi
     popd &>/dev/null
   }