minor updates for naming.
authorChris Koeritz <fred@gruntose.com>
Sat, 24 Sep 2016 02:48:46 +0000 (22:48 -0400)
committerChris Koeritz <fred@gruntose.com>
Sat, 24 Sep 2016 02:48:46 +0000 (22:48 -0400)
nucleus/library/tests_filesystem/test_directory_tree.cpp
scripts/clam/cpp/rebuild_oldies.sh
scripts/clam/cpp/rules.def

index d6136becfd693d9f2918520c27311888f329eb80..4a5f588dea5f07d1ba18872a91ed7efc25ab910d 100644 (file)
@@ -216,7 +216,7 @@ LOG("what happened with that?  did it work?");
 
 //hmmm: plug in real recursive delete here instead.
 basis::un_int kid;
-launch_process::run("/usr/bin/rm", astring("-rf ") + tmpdir.raw(), launch_process::AWAIT_APP_EXIT, kid);
+launch_process::run("/bin/rm", astring("-rf ") + tmpdir.raw(), launch_process::AWAIT_APP_EXIT, kid);
 ASSERT_FALSE(kid, "removing temporary files after test");
 
   }
index 02d3353538cf578ec26affc903d297b414519ea5..fa3b4003b761ae09fa0b7048a7563ee984c6df66 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 if [ -f "$BUILD_LIST_FILE" ]; then
-  echo Compiling [$(cat $BUILD_LIST_FILE | while read input_text; do echo $(basename $input_text); 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 "${@}"
index 4221047de8b5d428aa97668ea2f4ef803f24bba7..ad4c4a2fb8e0c212742bfe1513c5b3aff7c82263 100644 (file)
@@ -430,7 +430,7 @@ endif
 $(OBJECT_DIR)/%.obj: $(CURRENT_DIR)/%.cpp
 ifeq "$(NO_COMPILE)" ""
   ifneq "$(COMPILER)" "VISUAL_CPP"
-       @echo Compiling [$(notdir $@)]
+       @echo Compiling Object [$(notdir $@)]
        $(HIDESH)-c 'if [ ! -d $(@D) ]; then mkdir $(@D); fi'
        $(CATCHER)$(CC) $(COMPILER_FLAGS) -c $< $(OBJECT_NAME_FLAG)$@
   else
@@ -447,7 +447,7 @@ endif
 $(OBJECT_DIR)/%.obj: $(CURRENT_DIR)/%.c
 ifeq "$(NO_COMPILE)" ""
   ifneq "$(COMPILER)" "VISUAL_CPP"
-       @echo Compiling [$(notdir $@)]
+       @echo Compiling Object [$(notdir $@)]
        $(HIDESH)-c 'if [ ! -d $(@D) ]; then mkdir $(@D); fi'
        $(CATCHER)$(CC) $(COMPILER_FLAGS) -c $< $(OBJECT_NAME_FLAG)$@
   else