Change mkdir to mkdir -p while making directories for install
authorPaul Park <pjpark@mit.edu>
Mon, 21 Aug 1995 21:11:34 +0000 (21:11 +0000)
committerPaul Park <pjpark@mit.edu>
Mon, 21 Aug 1995 21:11:34 +0000 (21:11 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6554 dc483132-0cff-0310-8789-dd5450dbe970

src/ChangeLog
src/Makefile.in

index 8a10c0dd63c5c37a31290b73d3c895e2bb81686b..2a82b2330738ea4b4f8332f9ff665abd27b98a2e 100644 (file)
@@ -1,3 +1,7 @@
+
+Mon Aug 21 16:42:42 EDT 1995   Paul Park       (pjpark@mit.edu)
+       * Makefile.in - Change mkdir to mkdir -p.
+
 Tue Aug 15 16:19:29 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
 
        * configure.in: For OSF/1 specify that the -rpath directive takes
index bc03b8c00ef7238a48d304133facaa994ed62302..740bb450509065c794f54530e43f75995fd1f3c3 100644 (file)
@@ -47,7 +47,7 @@ install:: install-mkdirs
 
 install-mkdirs:
        @for i in $(INSTALLMKDIRS); do \
-               if test -d $(DESTDIR)$$i; then :; else (set -x; mkdir $(DESTDIR)$$i); fi \
+               if test -d $(DESTDIR)$$i; then :; else (set -x; mkdir -p $(DESTDIR)$$i); fi \
        done
 
 # install::