Fix "make install" so that it uses $(srcdir) for header files
authorTheodore Tso <tytso@mit.edu>
Mon, 3 Oct 1994 22:48:48 +0000 (22:48 +0000)
committerTheodore Tso <tytso@mit.edu>
Mon, 3 Oct 1994 22:48:48 +0000 (22:48 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4427 dc483132-0cff-0310-8789-dd5450dbe970

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

index cc7b695a3640dc4c76099a71bb7e1516d44ede62..c76a9dc044a9e1c40aa0e53fb3a334355a0c3518 100644 (file)
@@ -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
index fb903e4580493093b6c8052c0e49a38dd7517dee..7b21a973f4b5cbbc1aeacaf5f8887b1fec929134 100644 (file)
@@ -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)+" \