[unix] Make MKDIR_P actually work.

* builds/unix/configure.raw: Fix underquoting of `INSTALL' and
`MKDIR_P'.

Problem reported by Dan Liddell <lddll@yahoo.com>.
This commit is contained in:
Werner Lemberg 2015-10-12 10:13:26 +02:00
parent 4f7f6f6e47
commit b9880aa0f8
2 changed files with 17 additions and 7 deletions

View File

@ -1,3 +1,12 @@
2015-10-12 Werner Lemberg <wl@gnu.org>
[unix] Make MKDIR_P actually work.
* builds/unix/configure.raw: Fix underquoting of `INSTALL' and
`MKDIR_P'.
Problem reported by Dan Liddell <lddll@yahoo.com>.
2015-10-11 Werner Lemberg <wl@gnu.org>
[sfnt] Improve extraction of number of named instances.

View File

@ -70,24 +70,25 @@ AC_SUBST(CC_BUILD)
AC_SUBST(EXEEXT_BUILD)
# Since this file will be finally moved to another directory we make
# the path of the install scripts absolute. This small code snippet has
# been taken from automake's `ylwrap' script.
# Since these files will be eventually called from another directory (namely
# from the top level) we make the path of the scripts absolute.
#
# This small code snippet has been taken from automake's `ylwrap' script.
AC_PROG_INSTALL
case "$INSTALL" in
[\\/]* | ?:[\\/]*)
[[\\/]]* | ?:[[\\/]]*)
;;
*[\\/]*)
*[[\\/]]*)
INSTALL="`pwd`/$INSTALL"
;;
esac
AC_PROG_MKDIR_P
case "$MKDIR_P" in
[\\/]* | ?:[\\/]*)
[[\\/]]* | ?:[[\\/]]*)
;;
*[\\/]*)
*[[\\/]]*)
MKDIR_P="`pwd`/$MKDIR_P"
;;
esac