summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/aclocal.m42
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1ca3ab5df..7fc4bb80a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+Thu Apr 20 17:55:50 1995 Mark Eichin <eichin@cygnus.com>
+
+ * aclocal.m4 (.ct.c): use $(RM) instead of plain rm.
+
Thu Apr 20 12:45:07 1995 Keith Vetter (keithv@fusion.com)
* Makefile.in: bug that makefiles were always being reconfigured.
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index 70f4bb5b7..c2c25dc2e 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -225,7 +225,7 @@ MAKE_COMMANDS= $(BUILDTOP)/util/ss/mk_cmds
.ct.c:
@if [ $< != $}{*.ct ]; then \
- (set -x; cp $< $}{*.ct && $(MAKE_COMMANDS) $}{*.ct && rm $}{*.ct) || exit 1; \
+ (set -x; cp $< $}{*.ct && $(MAKE_COMMANDS) $}{*.ct && $(RM) $}{*.ct) || exit 1; \
else \
(set -x; $(MAKE_COMMANDS) $}{*.ct) || exit 1; \
fi