* Makefile.in (install-dirs): Deal with a prefix like /gnu;
authorJim Kingdon <jkingdon@engr.sgi.com>
Tue, 27 Jul 1993 18:06:23 +0000 (18:06 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Tue, 27 Jul 1993 18:06:23 +0000 (18:06 +0000)
its parent is '/' not ''.

ChangeLog
Makefile.in

index 49df9c7..ae813c3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 Tue Jul 27 12:43:40 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
+       * Makefile.in (install-dirs): Deal with a prefix like /gnu;
+       its parent is '/' not ''.
+
        * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
 
 Fri Jul 23 09:53:37 1993  Jason Merrill  (jason@wahini.cygnus.com)
index 1893df9..9daf3f4 100644 (file)
@@ -882,7 +882,7 @@ MAKEDIRS= \
 install-dirs:
        @for i in $(MAKEDIRS) ; do \
                echo Making $$i... ; \
-               parent=`echo $$i|sed -e 's@/[^/]*$$@@'`; \
+               parent=`echo $$i | sed -e 's@/[^/]*$$@@' | sed -e 's@^$@/@'`; \
                if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi ; \
                if [ ! -d $$i ] ; then \
                        if mkdir $$i ; then \