]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
fix for vpath and du4.0 make
authorKen Raeburn <raeburn@mit.edu>
Tue, 22 Feb 2000 21:15:46 +0000 (21:15 +0000)
committerKen Raeburn <raeburn@mit.edu>
Tue, 22 Feb 2000 21:15:46 +0000 (21:15 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12063 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/kadm5/ChangeLog
src/lib/kadm5/Makefile.in
src/lib/rpc/ChangeLog
src/lib/rpc/Makefile.in

index 7f8886495b205999687ae99b9eb542b064611922..da81cca5600f499f1dfc72c33e6077695c2dc865 100644 (file)
@@ -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
index 6f5efaae3fa7ac8bb2623809525e8092d02a2e5d..adb8c4e01607527268d61f0bb60fe5bc27a37434 100644 (file)
@@ -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; \
index 27150b24f71c493bfa2f4d8fa0758eb099a32f75..846726733c20f407c05c037e5f5e986bea9ab338 100644 (file)
@@ -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
index 487a1e4fdbb6b20972360263e1facdf5b240aaef..099337b058e1ba6d1c5c9af37c7a534ca01a65c9 100644 (file)
@@ -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; \