From: Tom Yu Date: Mon, 6 Apr 1998 23:45:48 +0000 (+0000) Subject: * Makefile.in (includes): Don't mkdir unless the directory doesn't X-Git-Tag: krb5-1.1-beta1~756 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d2d02dd231a5e76e2a7637eeee957002cddd99d3;p=krb5.git * Makefile.in (includes): Don't mkdir unless the directory doesn't exist yet. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10522 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/rpc/ChangeLog b/src/lib/rpc/ChangeLog index 8b536c142..4fac701cf 100644 --- a/src/lib/rpc/ChangeLog +++ b/src/lib/rpc/ChangeLog @@ -1,3 +1,8 @@ +Mon Apr 6 19:44:51 1998 Tom Yu + + * Makefile.in (includes): Don't mkdir unless the directory doesn't + exist yet. + Wed Feb 18 16:26:19 1998 Tom Yu * Makefile.in: Remove trailing slash from thisconfigdir. Fix up diff --git a/src/lib/rpc/Makefile.in b/src/lib/rpc/Makefile.in index 84314901b..9faf32b2d 100644 --- a/src/lib/rpc/Makefile.in +++ b/src/lib/rpc/Makefile.in @@ -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 \ diff --git a/src/util/ss/ChangeLog b/src/util/ss/ChangeLog index 3e0cf7b4e..598014459 100644 --- a/src/util/ss/ChangeLog +++ b/src/util/ss/ChangeLog @@ -1,3 +1,8 @@ +Mon Apr 6 19:45:25 1998 Tom Yu + + * Makefile.in (includes): Don't mkdir unless the directory doesn't + exist yet. + Mon Mar 30 11:30:00 1998 Ezra Peisach * ss_internal.h: Add ss_pager_create prototype. diff --git a/src/util/ss/Makefile.in b/src/util/ss/Makefile.in index 7ff2ef17b..a9c1e1794 100644 --- a/src/util/ss/Makefile.in +++ b/src/util/ss/Makefile.in @@ -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 \