summaryrefslogtreecommitdiffstats
path: root/src/util/ss
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>1994-07-03 11:54:22 +0000
committerTom Yu <tlyu@mit.edu>1994-07-03 11:54:22 +0000
commit3f6d9744f994f265a5d42fee50d0ca501fc654bd (patch)
tree3bdebdaab187c6ff72b1d0336cc87676d46414a8 /src/util/ss
parent7af3c1b655a147086ab045e164b7aeabce315f3e (diff)
mostly changes to prevent spewage of ignored errors
Maybe clean this up more later git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3950 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util/ss')
-rw-r--r--src/util/ss/ChangeLog4
-rw-r--r--src/util/ss/Makefile.in9
2 files changed, 8 insertions, 5 deletions
diff --git a/src/util/ss/ChangeLog b/src/util/ss/ChangeLog
index 6141d29a7..07948944b 100644
--- a/src/util/ss/ChangeLog
+++ b/src/util/ss/ChangeLog
@@ -1,3 +1,7 @@
+Sun Jul 3 07:48:43 1994 Tom Yu (tlyu at dragons-lair)
+
+ * Makefile.in: changing things to now spew ignored errors.
+
Wed Jun 22 18:51:50 1994 Mark Eichin (eichin@cygnus.com)
* configure.in: ss_err.h is *not* a SrcHeader. Note that there is
diff --git a/src/util/ss/Makefile.in b/src/util/ss/Makefile.in
index 6f8758824..f3b058558 100644
--- a/src/util/ss/Makefile.in
+++ b/src/util/ss/Makefile.in
@@ -101,17 +101,16 @@ clean::
depend:: ss_err.h
ct.tab.c ct.tab.h: ct.y
- rm -f ct.tab.* y.*
+ $(RM) ct.tab.* y.*
yacc -d $(srcdir)/ct.y
- mv -f y.tab.c ct.tab.c
- mv -f y.tab.h ct.tab.h
+ $(MV) y.tab.c ct.tab.c
+ $(MV) y.tab.h ct.tab.h
# install_library_target(ss,$(OBJS),$(SRCS),)
all:: libss.a
libss.a: $(OBJS)
- $(RM) $@.bak
- -$(MV) $@ $@.bak
+ if test -f $@; then $(RM) $@.bak; $(MV) $@ $@.bak; else :; fi
$(ARCHIVE) $@ $(OBJS)
$(RANLIB) $@