From: Theodore Tso Date: Mon, 3 Oct 1994 22:48:48 +0000 (+0000) Subject: Fix "make install" so that it uses $(srcdir) for header files X-Git-Tag: krb5-1.0-beta4.3~32 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8d218e3b4bd5cf5b337045ed155c37557e921606;p=krb5.git Fix "make install" so that it uses $(srcdir) for header files git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4427 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/krb5/ChangeLog b/src/include/krb5/ChangeLog index cc7b695a3..c76a9dc04 100644 --- a/src/include/krb5/ChangeLog +++ b/src/include/krb5/ChangeLog @@ -1,3 +1,7 @@ +Mon Oct 3 18:45:55 1994 Theodore Y. Ts'o (tytso@dcl) + + * Makefile.in: Fix "make install" to use $(srcdir) for header files. + Thu Sep 29 15:07:30 1994 Theodore Y. Ts'o (tytso@dcl) * func_proto.h (krb5_realm_compare): Added prototype for functin diff --git a/src/include/krb5/Makefile.in b/src/include/krb5/Makefile.in index fb903e458..7b21a973f 100644 --- a/src/include/krb5/Makefile.in +++ b/src/include/krb5/Makefile.in @@ -30,7 +30,7 @@ KRB5_INCDIR = $(KRB5ROOT)/include install:: $(KRB5_HEADERS) config.h osconf.h autoconf.h @set -x; for f in $(KRB5_HEADERS) config.h osconf.h ; \ - do cp $$f $(KRB5_INCDIR)/krb5/$$f ; \ + do cp $(srcdir)/$$f $(KRB5_INCDIR)/krb5/$$f ; \ done PROCESS_REPLACE = -e "s+@KRB5ROOT+$(KRB5ROOT)+" \