summaryrefslogtreecommitdiffstats
path: root/src/util/ss
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>1998-04-06 23:45:48 +0000
committerTom Yu <tlyu@mit.edu>1998-04-06 23:45:48 +0000
commitd2d02dd231a5e76e2a7637eeee957002cddd99d3 (patch)
treeeffb49b9044dd6cf5362983273702bc11dfaec97 /src/util/ss
parent926f71b69be461272112acd6e8a3dfba1e7da2f8 (diff)
downloadkrb5-d2d02dd231a5e76e2a7637eeee957002cddd99d3.tar.gz
krb5-d2d02dd231a5e76e2a7637eeee957002cddd99d3.tar.xz
krb5-d2d02dd231a5e76e2a7637eeee957002cddd99d3.zip
* 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
Diffstat (limited to 'src/util/ss')
-rw-r--r--src/util/ss/ChangeLog5
-rw-r--r--src/util/ss/Makefile.in2
2 files changed, 6 insertions, 1 deletions
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 <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.
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 \