summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2000-02-22 21:15:46 +0000
committerKen Raeburn <raeburn@mit.edu>2000-02-22 21:15:46 +0000
commitdac1594eaa1cf48755e9490f0712a9feaed6b9ff (patch)
treebc3a4d331045a565835c40e148028b6e76e5104c /src
parent2b477e13d7542df5724a02ae7d071298f44d512f (diff)
downloadkrb5-dac1594eaa1cf48755e9490f0712a9feaed6b9ff.tar.gz
krb5-dac1594eaa1cf48755e9490f0712a9feaed6b9ff.tar.xz
krb5-dac1594eaa1cf48755e9490f0712a9feaed6b9ff.zip
fix for vpath and du4.0 make
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12063 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/lib/kadm5/ChangeLog6
-rw-r--r--src/lib/kadm5/Makefile.in2
-rw-r--r--src/lib/rpc/ChangeLog6
-rw-r--r--src/lib/rpc/Makefile.in2
4 files changed, 16 insertions, 0 deletions
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 <raeburn@mit.edu>
+
+ * 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 <bgiles@coyotesong.com>
* 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 <donn@u.washington.edu>
+
+ * 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 <tlyu@mit.edu>
* 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; \