wok view freetype/stuff/freetype261-install.patch @ rev 18650

Add libsqlite-tcl
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Dec 02 11:54:07 2015 +0100 (2015-12-02)
parents
children
line source
1 http://git.savannah.gnu.org/cgit/freetype/freetype2.git/patch/?id=b9880aa0f8f52accc9074334f9e9f962b1b5a8e6
3 From b9880aa0f8f52accc9074334f9e9f962b1b5a8e6 Mon Sep 17 00:00:00 2001
4 From: Werner Lemberg <wl@gnu.org>
5 Date: Mon, 12 Oct 2015 08:13:26 +0000
6 Subject: [unix] Make MKDIR_P actually work.
8 * builds/unix/configure.raw: Fix underquoting of `INSTALL' and
9 `MKDIR_P'.
11 Problem reported by Dan Liddell <lddll@yahoo.com>.
12 ---
13 diff --git a/ChangeLog b/ChangeLog
14 index 067bf74..b02735f 100644
15 --- a/ChangeLog
16 +++ b/ChangeLog
17 @@ -1,3 +1,12 @@
18 +2015-10-12 Werner Lemberg <wl@gnu.org>
19 +
20 + [unix] Make MKDIR_P actually work.
21 +
22 + * builds/unix/configure.raw: Fix underquoting of `INSTALL' and
23 + `MKDIR_P'.
24 +
25 + Problem reported by Dan Liddell <lddll@yahoo.com>.
26 +
27 2015-10-11 Werner Lemberg <wl@gnu.org>
29 [sfnt] Improve extraction of number of named instances.
30 diff --git a/builds/unix/configure.raw b/builds/unix/configure.raw
31 index 5a30c65..f28baff 100644
32 --- a/builds/unix/configure.raw
33 +++ b/builds/unix/configure.raw
34 @@ -70,24 +70,25 @@ AC_SUBST(CC_BUILD)
35 AC_SUBST(EXEEXT_BUILD)
38 -# Since this file will be finally moved to another directory we make
39 -# the path of the install scripts absolute. This small code snippet has
40 -# been taken from automake's `ylwrap' script.
41 +# Since these files will be eventually called from another directory (namely
42 +# from the top level) we make the path of the scripts absolute.
43 +#
44 +# This small code snippet has been taken from automake's `ylwrap' script.
46 AC_PROG_INSTALL
47 case "$INSTALL" in
48 -[\\/]* | ?:[\\/]*)
49 +[[\\/]]* | ?:[[\\/]]*)
50 ;;
51 -*[\\/]*)
52 +*[[\\/]]*)
53 INSTALL="`pwd`/$INSTALL"
54 ;;
55 esac
57 AC_PROG_MKDIR_P
58 case "$MKDIR_P" in
59 -[\\/]* | ?:[\\/]*)
60 +[[\\/]]* | ?:[[\\/]]*)
61 ;;
62 -*[\\/]*)
63 +*[[\\/]]*)
64 MKDIR_P="`pwd`/$MKDIR_P"
65 ;;
66 esac
67 --
68 cgit v0.9.0.2