* Makefile.in (includes): Don't mkdir unless the directory doesn't
authorTom Yu <tlyu@mit.edu>
Mon, 6 Apr 1998 23:45:48 +0000 (23:45 +0000)
committerTom Yu <tlyu@mit.edu>
Mon, 6 Apr 1998 23:45:48 +0000 (23:45 +0000)
  exist yet.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10522 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/rpc/ChangeLog
src/lib/rpc/Makefile.in
src/util/ss/ChangeLog
src/util/ss/Makefile.in

index 8b536c142a33bdd54a83cd22e45ec6848bc11070..4fac701cfc0785f865542c2c6c5e4491e5c62aab 100644 (file)
@@ -1,3 +1,8 @@
+Mon Apr  6 19:44:51 1998  Tom Yu  <tlyu@voltage-multiplier.mit.edu>
+
+       * Makefile.in (includes): Don't mkdir unless the directory doesn't
+       exist yet.
+
 Wed Feb 18 16:26:19 1998  Tom Yu  <tlyu@mit.edu>
 
        * Makefile.in: Remove trailing slash from thisconfigdir.  Fix up
index 84314901bb4e409a88547f0c6160108d5a79b456..9faf32b2d2dfc0c158815a5da049bae12450993a 100644 (file)
@@ -183,7 +183,7 @@ SRC_HDRS = auth.h auth_gssapi.h auth_unix.h clnt.h netdb.h pmap_clnt.h \
        xdr.h
 
 includes:: $(SRC_HDRS) $(BUILD_HDRS)
-       mkdir -p $(HDRDIR)
+       if [ -d $(HDRDIR) ]; then :; else mkdir -p $(HDRDIR); fi
        for i in $(SRC_HDRS) ; do \
                if cmp $(srcdir)/$$i $(HDRDIR)/$$i >/dev/null 2>&1; then :; \
                else \
index 3e0cf7b4e0f233cd01b530c1ce6ea5ee0579ea45..5980144590bc81ad0a61555cbc9f710227024385 100644 (file)
@@ -1,3 +1,8 @@
+Mon Apr  6 19:45:25 1998  Tom Yu  <tlyu@voltage-multiplier.mit.edu>
+
+       * Makefile.in (includes): Don't mkdir unless the directory doesn't
+       exist yet.
+
 Mon Mar 30 11:30:00 1998  Ezra Peisach  <epeisach@kangaroo.mit.edu>
 
        * ss_internal.h: Add ss_pager_create prototype.
index 7ff2ef17b6b41865b2efca688ebd26c3ac1a1b6f..a9c1e179496a204943897569d2d5697d7d217b20 100644 (file)
@@ -96,7 +96,7 @@ SRC_HDRS = ss.h
 SRC_HDRS_DEP = $(srcdir)/ss.h 
 
 includes:: $(SRC_HDRS_DEP) $(BUILD_HDRS)
-       mkdir -p $(HDRDIR)
+       if [ -d $(HDRDIR) ] ; then :; else mkdir -p $(HDRDIR); fi
        for i in $(SRC_HDRS) ; do \
                if cmp $(srcdir)/$$i $(HDRDIR)/$$i >/dev/null 2>&1; then :; \
                else \