diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2013-07-15 11:19:12 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-07-15 22:55:14 +0200 |
commit | df2d502a24900ae9814e34ce4b4e015e0ec65721 (patch) | |
tree | 0812f95165e1f45559360c26b217aa38271dd389 /package/gettext/gettext-05-use-shell.patch | |
parent | b2b0274a17195d642ca7c69659ad279dcbe8b10c (diff) | |
download | buildroot-df2d502a24900ae9814e34ce4b4e015e0ec65721.tar.gz buildroot-df2d502a24900ae9814e34ce4b4e015e0ec65721.zip |
gettext: bump to version 0.18.3
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/gettext/gettext-05-use-shell.patch')
-rw-r--r-- | package/gettext/gettext-05-use-shell.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/package/gettext/gettext-05-use-shell.patch b/package/gettext/gettext-05-use-shell.patch deleted file mode 100644 index 5f6e2c268b..0000000000 --- a/package/gettext/gettext-05-use-shell.patch +++ /dev/null @@ -1,25 +0,0 @@ -gettext-runtime: use @SHELL@ for the SHELL variable definition - -The gettext-runtime/Makefile.in uses an hardcoded SHELL = /bin/sh -variable. This causes problems at build time, because libtool is then -called with the 'sh' shell, which does not support the += construct -that the libtool script is using. - -Instead, this Makefile.in should be definining SHELL = @SHELL@, just -like all other Makefile.in of gettext. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> - -Index: b/gettext-runtime/intl/Makefile.in -=================================================================== ---- a/gettext-runtime/intl/Makefile.in -+++ b/gettext-runtime/intl/Makefile.in -@@ -17,7 +17,7 @@ - PACKAGE = @PACKAGE@ - VERSION = @VERSION@ - --SHELL = /bin/sh -+SHELL = @SHELL@ - - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ |