* Makefile.in (install): constructed headers come from the build
authorMark Eichin <eichin@mit.edu>
Fri, 13 Jan 1995 12:51:38 +0000 (12:51 +0000)
committerMark Eichin <eichin@mit.edu>
Fri, 13 Jan 1995 12:51:38 +0000 (12:51 +0000)
tree, not the source tree.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4806 dc483132-0cff-0310-8789-dd5450dbe970

src/include/krb5/ChangeLog
src/include/krb5/Makefile.in

index 2fcaaf41b87643af01f4a0d51283088334c439b0..d91a4000b6fc41564757001a046d9798019c39c8 100644 (file)
@@ -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
index 12f4c8b4fad899cccb098da6444ec04daeaac427..ede532b7a55be1185ab4761943d7a95596f8ee43 100644 (file)
@@ -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)+" \