diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 1893df9..9daf3f4 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 \ |