[1146] in Kerberos-V5-bugs
krb5b4pl3: include/krb5/Makefile.in needs to install more files
daemon@ATHENA.MIT.EDU (Jonathan I. Kamens)
Tue Mar 14 08:09:41 1995
From: "Jonathan I. Kamens" <jik@cam.ov.com>
Date: Tue, 14 Mar 1995 08:12:47 -0500
To: krb5-bugs@MIT.EDU
Numerous files in include/krb5 that don't get installed should be,
because otherwise, builds can't be done against the installed header
files (because of missing files included by the installed files).
Patch:
--- Makefile.in 1995/03/14 02:38:08 1.5
+++ Makefile.in 1995/03/14 13:12:11
@@ -25,12 +25,14 @@
depend::
-install:: $(KRB5_HEADERS) config.h osconf.h autoconf.h
+install:: $(KRB5_HEADERS) config.h osconf.h autoconf.h autoconf.h krb5_err.h
+install:: adm_defs.h asn1_err.h kdb5_err.h
@set -x; for f in $(KRB5_HEADERS) ; \
do $(RM) $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f; \
cp $(srcdir)/$$f $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f ; \
done
- @set -x; for f in config.h osconf.h ; \
+ @set -x; for f in config.h osconf.h autoconf.h krb5_err.h \
+ adm_defs.h asn1_err.h kdb5_err.h ; \
do $(RM) $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f; \
cp $$f $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f ; \
done