summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2002-10-10 03:17:58 +0000
committerSteve Huston <shuston@riverace.com>2002-10-10 03:17:58 +0000
commit0634994169a811912093e704d0388bb8bbb696e9 (patch)
tree709e8990b05848d69331afe67a42f380738f168e
parentde842b609d27a4ef6c7eed5d541780ce9ee1183d (diff)
downloadATCD-0634994169a811912093e704d0388bb8bbb696e9.tar.gz
ChangeLogTag:Wed Oct 9 23:08:19 2002 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--include/makeinclude/rules.lib.GNU3
3 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7def53870b8..a01f7562f9e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Wed Oct 9 23:08:19 2002 Steve Huston <shuston@riverace.com>
+
+ * include/makeinclude/rules.lib.GNU: For the funky AIX shr.o/lib*.a
+ machination, declare shr.o as .INTERMEDIATE to avoid rebuilding it
+ all the time for nothing. Thanks to Craig L. Ching for motivating
+ this.
+
Wed Oct 09 12:19:40 2002 Nanbor Wang <nanbor@cs.wustl.edu>
* bin/PerlACE/Process_Win32.pm: Added hack to purify a process.
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 7def53870b8..a01f7562f9e 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Wed Oct 9 23:08:19 2002 Steve Huston <shuston@riverace.com>
+
+ * include/makeinclude/rules.lib.GNU: For the funky AIX shr.o/lib*.a
+ machination, declare shr.o as .INTERMEDIATE to avoid rebuilding it
+ all the time for nothing. Thanks to Craig L. Ching for motivating
+ this.
+
Wed Oct 09 12:19:40 2002 Nanbor Wang <nanbor@cs.wustl.edu>
* bin/PerlACE/Process_Win32.pm: Added hack to purify a process.
diff --git a/include/makeinclude/rules.lib.GNU b/include/makeinclude/rules.lib.GNU
index 97669fbbc82..6310f18edc9 100644
--- a/include/makeinclude/rules.lib.GNU
+++ b/include/makeinclude/rules.lib.GNU
@@ -129,7 +129,8 @@ $(VSHLIB): shr.o
ifneq (,$(RANLIB))
-$(RANLIB) $@
endif # RANLIB
- $(RM) shr.o
+
+.INTERMEDIATE: shr.o
shr.o: $(VSHOBJS1)
else