shithub: freetype+ttf2subf

Download patch

ref: b9880aa0f8f52accc9074334f9e9f962b1b5a8e6
parent: 4f7f6f6e47232e3df95174833c1c5bead20e8f9e
author: Werner Lemberg <[email protected]>
date: Mon Oct 12 06:13:26 EDT 2015

[unix] Make MKDIR_P actually work.

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

Problem reported by Dan Liddell <[email protected]>.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2015-10-12  Werner Lemberg  <[email protected]>
+
+	[unix] Make MKDIR_P actually work.
+
+	* builds/unix/configure.raw: Fix underquoting of `INSTALL' and
+	`MKDIR_P'.
+
+	Problem reported by Dan Liddell <[email protected]>.
+
 2015-10-11  Werner Lemberg  <[email protected]>
 
 	[sfnt] Improve extraction of number of named instances.
--- a/builds/unix/configure.raw
+++ b/builds/unix/configure.raw
@@ -70,15 +70,16 @@
 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
@@ -85,9 +86,9 @@
 
 AC_PROG_MKDIR_P
 case "$MKDIR_P" in
-[\\/]* | ?:[\\/]*)
+[[\\/]]* | ?:[[\\/]]*)
   ;;
-*[\\/]*)
+*[[\\/]]*)
   MKDIR_P="`pwd`/$MKDIR_P"
   ;;
 esac