From 3f6d9744f994f265a5d42fee50d0ca501fc654bd Mon Sep 17 00:00:00 2001 From: Tom Yu Date: Sun, 3 Jul 1994 11:54:22 +0000 Subject: 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 --- src/util/et/ChangeLog | 4 ++++ src/util/et/Makefile.in | 3 +-- src/util/ss/ChangeLog | 4 ++++ src/util/ss/Makefile.in | 9 ++++----- 4 files changed, 13 insertions(+), 7 deletions(-) (limited to 'src/util') diff --git a/src/util/et/ChangeLog b/src/util/et/ChangeLog index ed2e3b5ff..168931109 100644 --- a/src/util/et/ChangeLog +++ b/src/util/et/ChangeLog @@ -1,3 +1,7 @@ +Sun Jul 3 07:48:04 1994 Tom Yu (tlyu at dragons-lair) + + * Makefile.in: cleaning up to not spew ignored errors + Wed Jun 22 18:47:36 1994 Mark Eichin (eichin@tweedledumber.cygnus.com) * com_err.h: Only set STDARG_PROTOTYPES based on STDC if it isn't diff --git a/src/util/et/Makefile.in b/src/util/et/Makefile.in index da9563ce5..f7cf3d04f 100644 --- a/src/util/et/Makefile.in +++ b/src/util/et/Makefile.in @@ -66,8 +66,7 @@ install:: compile_et.1 all:: libcom_err.a libcom_err.a: $(LIBOBJS) - $(RM) $@.bak - -mv $@ $@.bak + if test -f $@; then $(RM) $@.bak; $(MV) $@ $@.bak; else :; fi; $(ARCHIVE) $@ $(LIBOBJS) $(RANLIB) $@ 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) $@ -- cgit