summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>1994-07-14 07:35:30 +0000
committerTom Yu <tlyu@mit.edu>1994-07-14 07:35:30 +0000
commitf7dec238d62291c64bfa8b3cdab707763d05407c (patch)
tree8cad9799232c289bde1da727d39c90507f41440e /src/include
parentece77e4e7c290ed151e354b1624bd6a5f95f9423 (diff)
downloadkrb5-f7dec238d62291c64bfa8b3cdab707763d05407c.tar.gz
krb5-f7dec238d62291c64bfa8b3cdab707763d05407c.tar.xz
krb5-f7dec238d62291c64bfa8b3cdab707763d05407c.zip
* Makefile.in: some cleanup to not echo cruft
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3968 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-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 6346e0629a..7dae7d2d99 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 047ec1a6cd..fb903e4580 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