wok annotate freetype/stuff/freetype261-install.patch @ rev 18897

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