summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/krb5/ChangeLog4
-rw-r--r--src/include/krb5/Makefile.in8
2 files changed, 8 insertions, 4 deletions
diff --git a/src/include/krb5/ChangeLog b/src/include/krb5/ChangeLog
index 6346e0629..7dae7d2d9 100644
--- a/src/include/krb5/ChangeLog
+++ b/src/include/krb5/ChangeLog
@@ -1,3 +1,7 @@
+Thu Jul 14 03:31:06 1994 Tom Yu (tlyu at dragons-lair)
+
+ * Makefile.in: some cleanup to not echo cruft
+
Tue Jun 28 19:09:21 1994 Tom Yu (tlyu at dragons-lair)
* error_def.h: folding in Harry's changes
diff --git a/src/include/krb5/Makefile.in b/src/include/krb5/Makefile.in
index 047ec1a6c..fb903e458 100644
--- a/src/include/krb5/Makefile.in
+++ b/src/include/krb5/Makefile.in
@@ -42,8 +42,8 @@ OSCONFSRC = $(srcdir)/stock/osauto.h $(srcdir)/stock/osconf.h
osconf.h: $(OSCONFSRC)
cat $(OSCONFSRC) | sed $(PROCESS_REPLACE) > osconf.new
- if cmp -s osconf.new osconf.h ; then true; \
- else $(RM) osconf.h ; $(CP) osconf.new osconf.h ; fi
+ @if cmp -s osconf.new osconf.h ; then :; \
+ else (set -x; $(RM) osconf.h ; $(CP) osconf.new osconf.h) fi
CONF_REPLACE = -e "/UnifdefRan/,/SPLIT-HERE/d"
@@ -51,8 +51,8 @@ CONFSRC = $(srcdir)/stock/confauto.h $(srcdir)/stock/config.h
config.h: $(CONFSRC)
cat $(CONFSRC) | sed $(CONF_REPLACE) > config.new
- if cmp -s config.new config.h ; then true; \
- else $(RM) config.h ; $(CP) config.new config.h ; fi
+ @if cmp -s config.new config.h ; then :; \
+ else (set -x; $(RM) config.h ; $(CP) config.new config.h) fi
clean::
$(RM) config.h config.new osconf.h osconf.new