summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorMark Eichin <eichin@mit.edu>1995-01-13 12:51:38 +0000
committerMark Eichin <eichin@mit.edu>1995-01-13 12:51:38 +0000
commit4014e7b3a9fa3cd5885a6eae41409ab19653747b (patch)
treef94230f066001390ea7e5d20f0ecf5d56374181b /src/include
parent5c4c3c216d4a36f68b3bdcc8f8c037d278d4b8cc (diff)
downloadkrb5-4014e7b3a9fa3cd5885a6eae41409ab19653747b.tar.gz
krb5-4014e7b3a9fa3cd5885a6eae41409ab19653747b.tar.xz
krb5-4014e7b3a9fa3cd5885a6eae41409ab19653747b.zip
* Makefile.in (install): constructed headers come from the build
tree, not the source tree. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4806 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r--src/include/krb5/ChangeLog5
-rw-r--r--src/include/krb5/Makefile.in7
2 files changed, 10 insertions, 2 deletions
diff --git a/src/include/krb5/ChangeLog b/src/include/krb5/ChangeLog
index 2fcaaf41b..d91a4000b 100644
--- a/src/include/krb5/ChangeLog
+++ b/src/include/krb5/ChangeLog
@@ -1,3 +1,8 @@
+Thu Jan 12 01:55:54 1995 Mark Eichin <eichin@cygnus.com>
+
+ * Makefile.in (install): constructed headers come from the build
+ tree, not the source tree.
+
Fri Dec 23 22:29:43 1994 Theodore Y. Ts'o (tytso@dcl)
* krb5.h (krb5_cred): Add enc_part2 member which may point to the
diff --git a/src/include/krb5/Makefile.in b/src/include/krb5/Makefile.in
index 12f4c8b4f..ede532b7a 100644
--- a/src/include/krb5/Makefile.in
+++ b/src/include/krb5/Makefile.in
@@ -33,8 +33,11 @@ KRB5ROOT = @KRB5ROOT@
KRB5_INCDIR = $(KRB5ROOT)/include
install::
- @set -x; for f in $(KRB5_HEADERS) $(BUILT_HEADERS) $(ET_HEADERS); \
- do $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f ; \
+ @set -x; for f in $(KRB5_HEADERS); \
+ do $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f ; \
+ done; \
+ @set -x; for f in $(BUILT_HEADERS) $(ET_HEADERS); \
+ do $(INSTALL_DATA) $$f $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f ; \
done
PROCESS_REPLACE = -e "s+@KRB5ROOT+$(KRB5ROOT)+" \