wok diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/freetype/stuff/freetype261-install.patch	Wed Dec 02 11:54:07 2015 +0100
     1.3 @@ -0,0 +1,68 @@
     1.4 +http://git.savannah.gnu.org/cgit/freetype/freetype2.git/patch/?id=b9880aa0f8f52accc9074334f9e9f962b1b5a8e6
     1.5 +
     1.6 +From b9880aa0f8f52accc9074334f9e9f962b1b5a8e6 Mon Sep 17 00:00:00 2001
     1.7 +From: Werner Lemberg <wl@gnu.org>
     1.8 +Date: Mon, 12 Oct 2015 08:13:26 +0000
     1.9 +Subject: [unix] Make MKDIR_P actually work.
    1.10 +
    1.11 +* builds/unix/configure.raw: Fix underquoting of `INSTALL' and
    1.12 +`MKDIR_P'.
    1.13 +
    1.14 +Problem reported by Dan Liddell <lddll@yahoo.com>.
    1.15 +---
    1.16 +diff --git a/ChangeLog b/ChangeLog
    1.17 +index 067bf74..b02735f 100644
    1.18 +--- a/ChangeLog
    1.19 ++++ b/ChangeLog
    1.20 +@@ -1,3 +1,12 @@
    1.21 ++2015-10-12  Werner Lemberg  <wl@gnu.org>
    1.22 ++
    1.23 ++	[unix] Make MKDIR_P actually work.
    1.24 ++
    1.25 ++	* builds/unix/configure.raw: Fix underquoting of `INSTALL' and
    1.26 ++	`MKDIR_P'.
    1.27 ++
    1.28 ++	Problem reported by Dan Liddell <lddll@yahoo.com>.
    1.29 ++
    1.30 + 2015-10-11  Werner Lemberg  <wl@gnu.org>
    1.31 + 
    1.32 + 	[sfnt] Improve extraction of number of named instances.
    1.33 +diff --git a/builds/unix/configure.raw b/builds/unix/configure.raw
    1.34 +index 5a30c65..f28baff 100644
    1.35 +--- a/builds/unix/configure.raw
    1.36 ++++ b/builds/unix/configure.raw
    1.37 +@@ -70,24 +70,25 @@ AC_SUBST(CC_BUILD)
    1.38 + AC_SUBST(EXEEXT_BUILD)
    1.39 + 
    1.40 + 
    1.41 +-# Since this file will be finally moved to another directory we make
    1.42 +-# the path of the install scripts absolute.  This small code snippet has
    1.43 +-# been taken from automake's `ylwrap' script.
    1.44 ++# Since these files will be eventually called from another directory (namely
    1.45 ++# from the top level) we make the path of the scripts absolute.
    1.46 ++#
    1.47 ++# This small code snippet has been taken from automake's `ylwrap' script.
    1.48 + 
    1.49 + AC_PROG_INSTALL
    1.50 + case "$INSTALL" in
    1.51 +-[\\/]* | ?:[\\/]*)
    1.52 ++[[\\/]]* | ?:[[\\/]]*)
    1.53 +   ;;
    1.54 +-*[\\/]*)
    1.55 ++*[[\\/]]*)
    1.56 +   INSTALL="`pwd`/$INSTALL"
    1.57 +   ;;
    1.58 + esac
    1.59 + 
    1.60 + AC_PROG_MKDIR_P
    1.61 + case "$MKDIR_P" in
    1.62 +-[\\/]* | ?:[\\/]*)
    1.63 ++[[\\/]]* | ?:[[\\/]]*)
    1.64 +   ;;
    1.65 +-*[\\/]*)
    1.66 ++*[[\\/]]*)
    1.67 +   MKDIR_P="`pwd`/$MKDIR_P"
    1.68 +   ;;
    1.69 + esac
    1.70 +--
    1.71 +cgit v0.9.0.2