summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-12-15 13:29:56 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-12-15 13:29:56 +0000
commit8fce83fbbbc95a1e93b55ca997f8f036145c4963 (patch)
tree6811b1becb50f1f201721d2f965398a6b69b6cd6
parent2b150ac5121506fc0928d8cd878ef92f6491b877 (diff)
downloadATCD-8fce83fbbbc95a1e93b55ca997f8f036145c4963.tar.gz
ChangeLogTag: Mon Dec 15 07:29:27 2003 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog23
-rw-r--r--bin/MakeProjectCreator/templates/gnu.mpd3
-rw-r--r--include/makeinclude/rules.local.GNU2
3 files changed, 18 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 30608e6fd99..1c4521a1e75 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+Mon Dec 15 07:29:27 2003 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/MakeProjectCreator/templates/gnu.mpd:
+
+ Removed a redundant rule to create the $(TEMPINCDIR) directory.
+
+ * include/makeinclude/rules.local.GNU:
+
+ Added -p to the mkdir command in the rules to make the
+ $(CLEANUP_DIRS).
+
Mon Dec 15 11:35:12 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Naming_Context.cpp:
@@ -7,17 +18,17 @@ Mon Dec 15 11:35:12 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
Sat Dec 13 23:29:05 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
- * bin/tao_orb_tests.lst:
- * bin/tao_other_tests.lst:
+ * bin/tao_orb_tests.lst:
+ * bin/tao_other_tests.lst:
- Many of the tests were being run in the single threaded
- configuration, though they shouldn't have been.
+ Many of the tests were being run in the single threaded
+ configuration, though they shouldn't have been.
Fri Dec 12 19:31:00 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
- * bin/tao_orb_tests.lst:
+ * bin/tao_orb_tests.lst:
- Some tests were run twice. They have been removed.
+ Some tests were run twice. They have been removed.
Fri Dec 12 08:53:50 2003 Chad Elliott <elliott_c@ociweb.com>
diff --git a/bin/MakeProjectCreator/templates/gnu.mpd b/bin/MakeProjectCreator/templates/gnu.mpd
index ed4437b399c..fcb4a44dba1 100644
--- a/bin/MakeProjectCreator/templates/gnu.mpd
+++ b/bin/MakeProjectCreator/templates/gnu.mpd
@@ -108,9 +108,6 @@ TEMPINCDIR := $(TEMPINCDIR)/<%project_name%>
all: $(TEMPINCDIR)
-$(TEMPINCDIR):
- @-test -d $(TEMPINCDIR) || mkdir -p $(TEMPINCDIR) $(ACE_NUL_STDERR)
-
endif
<%if(exename)%>
OUTPUT_DIRECTORY = <%if(install)%><%install%><%else%>.<%endif%>
diff --git a/include/makeinclude/rules.local.GNU b/include/makeinclude/rules.local.GNU
index 2a31b112b2b..c5e422b4042 100644
--- a/include/makeinclude/rules.local.GNU
+++ b/include/makeinclude/rules.local.GNU
@@ -453,7 +453,7 @@ $(CLEANUP_DIRS):
@if not exist $@ mkdir $@
else
$(CLEANUP_DIRS):
- @test -d $@ || mkdir $@ $(ACE_NUL_STDERR)
+ @test -d $@ || mkdir -p $@ $(ACE_NUL_STDERR)
endif
#---------------------------------------------------------------------------