* Makefile.in (install-dirs): Deal with a prefix like /gnu;

its parent is '/' not ''.
This commit is contained in:
Jim Kingdon 1993-07-27 18:06:23 +00:00
parent 01ec958849
commit c49a9c4076
2 changed files with 4 additions and 1 deletions

View File

@ -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)

View 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 \