mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
* Makefile.in (install-dirs): Deal with a prefix like /gnu;
its parent is '/' not ''.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
Tue Jul 27 12:43:40 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
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.
|
* Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
|
||||||
|
|
||||||
Fri Jul 23 09:53:37 1993 Jason Merrill (jason@wahini.cygnus.com)
|
Fri Jul 23 09:53:37 1993 Jason Merrill (jason@wahini.cygnus.com)
|
||||||
|
@ -882,7 +882,7 @@ MAKEDIRS= \
|
|||||||
install-dirs:
|
install-dirs:
|
||||||
@for i in $(MAKEDIRS) ; do \
|
@for i in $(MAKEDIRS) ; do \
|
||||||
echo Making $$i... ; \
|
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 $$parent ] ; then true ; else mkdir $$parent ; fi ; \
|
||||||
if [ ! -d $$i ] ; then \
|
if [ ! -d $$i ] ; then \
|
||||||
if mkdir $$i ; then \
|
if mkdir $$i ; then \
|
||||||
|
Reference in New Issue
Block a user