From dac1594eaa1cf48755e9490f0712a9feaed6b9ff Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Tue, 22 Feb 2000 21:15:46 +0000 Subject: [PATCH] fix for vpath and du4.0 make git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12063 dc483132-0cff-0310-8789-dd5450dbe970 --- src/lib/kadm5/ChangeLog | 6 ++++++ src/lib/kadm5/Makefile.in | 2 ++ src/lib/rpc/ChangeLog | 6 ++++++ src/lib/rpc/Makefile.in | 2 ++ 4 files changed, 16 insertions(+) diff --git a/src/lib/kadm5/ChangeLog b/src/lib/kadm5/ChangeLog index 7f8886495..da81cca56 100644 --- a/src/lib/kadm5/ChangeLog +++ b/src/lib/kadm5/ChangeLog @@ -1,3 +1,9 @@ +2000-02-22 Ken Raeburn + + * Makefile.in (includes): Extract basename of header file to be + installed, since Digital UNIX 4.0 native make substitutes the + VPATH-derived pathname here. + 2000-02-21 Bear Giles * alt_prof.c (krb5_read_realm_params): Permit realm supported diff --git a/src/lib/kadm5/Makefile.in b/src/lib/kadm5/Makefile.in index 6f5efaae3..adb8c4e01 100644 --- a/src/lib/kadm5/Makefile.in +++ b/src/lib/kadm5/Makefile.in @@ -71,6 +71,7 @@ SRC_HDRS = adb.h admin.h admin_internal.h admin_xdr.h kadm_rpc.h \ includes:: $(SRC_HDRS) $(BUILD_HDRS) if [ -d $(HDRDIR) ]; then :; else mkdir -p $(HDRDIR); fi for i in $(SRC_HDRS) ; do \ + i=`basename $$i`; \ if cmp $(srcdir)/$$i $(HDRDIR)/$$i >/dev/null 2>&1; then :; \ else \ (set -x; $(RM) $(HDRDIR)/$$i; \ @@ -78,6 +79,7 @@ includes:: $(SRC_HDRS) $(BUILD_HDRS) fi ; \ done for i in $(BUILD_HDRS) ; do \ + i=`basename $$i`; \ if cmp $$i $(HDRDIR)/$$i >/dev/null 2>&1; then :; \ else \ (set -x; $(RM) $(HDRDIR)/$$i; \ diff --git a/src/lib/rpc/ChangeLog b/src/lib/rpc/ChangeLog index 27150b24f..846726733 100644 --- a/src/lib/rpc/ChangeLog +++ b/src/lib/rpc/ChangeLog @@ -1,3 +1,9 @@ +2000-02-22 Donn Cave + + * Makefile.in (includes): Extract basename of header file to be + installed, since Digital UNIX 4.0 native make substitutes the + VPATH-derived pathname here. + 2000-02-17 Tom Yu * svc_auth_gssapi.c (_svcauth_gssapi): Don't explicitly free diff --git a/src/lib/rpc/Makefile.in b/src/lib/rpc/Makefile.in index 487a1e4fd..099337b05 100644 --- a/src/lib/rpc/Makefile.in +++ b/src/lib/rpc/Makefile.in @@ -187,6 +187,7 @@ SRC_HDRS = auth.h auth_gssapi.h auth_unix.h clnt.h netdb.h pmap_clnt.h \ includes:: $(SRC_HDRS) $(BUILD_HDRS) if [ -d $(HDRDIR) ]; then :; else mkdir -p $(HDRDIR); fi for i in $(SRC_HDRS) ; do \ + i=`basename $$i`; \ if cmp $(srcdir)/$$i $(HDRDIR)/$$i >/dev/null 2>&1; then :; \ else \ (set -x; $(RM) $(HDRDIR)/$$i; \ @@ -194,6 +195,7 @@ includes:: $(SRC_HDRS) $(BUILD_HDRS) fi ; \ done for i in $(BUILD_HDRS) ; do \ + i=`basename $$i`; \ if cmp $$i $(HDRDIR)/$$i >/dev/null 2>&1; then :; \ else \ (set -x; $(RM) $(HDRDIR)/$$i; \ -- 2.26.2