summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog-99b5
-rw-r--r--Makefile10
2 files changed, 11 insertions, 4 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index 4957bcf5ae2..b5a87b30ef9 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -1,3 +1,8 @@
+Sat Aug 21 11:52:51 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
+
+ * Makefile:
+ Fixed small problem in the releaseall target.
+
Thu Aug 19 18:45:00 1999 Chris Gill <cdgill@cs.wustl.edu>
* ace/Auto_Ptr.h: modified ACE_AUTO_PTR_RESET macro, to pass the
diff --git a/Makefile b/Makefile
index 551fa44b2d7..c652605579a 100644
--- a/Makefile
+++ b/Makefile
@@ -169,10 +169,12 @@ RELEASE_LIB_FILES = \
.PHONY: release releasetao releaseall tag
-ACE_TAG = -ta `head -1 VERSION | perl -ne \
- 's/.* ([\d\.]+),.*\n/$$1/; tr/./_/; print "ACE-$$_";'`
-TAO_TAG = -tt `head -1 TAO/VERSION | perl -ne \
- 's/.* ([\d\.]+),.*\n/$$1/; tr/./_/; print "TAO-$$_";'`
+ACE_TAG_VALUE = $(shell head -1 VERSION | perl -ne \
+ 's/.* ([\d\.]+),.*\n/$$1/; tr/./_/; print "ACE-$$_";')
+ACE_TAG = -ta $(ACE_TAG_VALUE)
+TAO_TAG_VALUE = $(shell head -1 TAO/VERSION | perl -ne \
+ 's/.* ([\d\.]+),.*\n/$$1/; tr/./_/; print "TAO-$$_";')
+TAO_TAG = -tt $(TAO_TAG_VALUE)
APPLY_NEW_TAG = tag
CHECK =
GENERATE_MAN_PAGES = -g