Skip to content

Commit ea883cc

Browse files
committed
Merge pull request #4 from str1ngs/master
gettext: do not hardcode system shell.
2 parents 319fd19 + b37f107 commit ea883cc

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

modulesets/clutter-android.modules

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@
2727
</autotools>
2828

2929
<autotools id="gettext" autogenargs="--without-included-regex --disable-java --disable-openmp --without-libiconv-prefix --without-libintl-prefix --without-libglib-2.0-prefix --without-libcroco-0.6-prefix --with-included-libxml --without-libncurses-prefix --without-libtermcap-prefix --without-libcurses-prefix --without-libexpat-prefix --without-emacs" autogen-sh="autoreconf">
30-
<branch module="gettext/gettext-0.18.1.1.tar.gz" repo="gnu.org" source-subdir="gettext-tools" version="0.18.1.1" subdir="intl">
30+
<branch module="gettext/gettext-0.18.2.tar.gz" repo="gnu.org" source-subdir="gettext-tools" version="0.18.2" subdir="intl">
3131
<patch file="gettext/disable-everything-except-intl.patch" strip="1" />
32+
<patch file="gettext/0001-intl-dont-hard-code-shell.patch" strip="1" />
3233
</branch>
3334
</autotools>
3435

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
From 8e65fa677764a7489f3fae21d7234f98db962761 Mon Sep 17 00:00:00 2001
2+
From: mike rosset <[email protected]>
3+
Date: Sat, 12 Jan 2013 22:02:18 -0800
4+
Subject: [PATCH] intl: dont hard code shell
5+
6+
---
7+
gettext-runtime/intl/Makefile.in | 2 +-
8+
1 file changed, 1 insertion(+), 1 deletion(-)
9+
10+
diff --git a/gettext-runtime/intl/Makefile.in b/gettext-runtime/intl/Makefile.in
11+
index 006d3b0..a605dda 100644
12+
--- a/gettext-runtime/intl/Makefile.in
13+
+++ b/gettext-runtime/intl/Makefile.in
14+
@@ -17,7 +17,7 @@
15+
PACKAGE = @PACKAGE@
16+
VERSION = @VERSION@
17+
18+
-SHELL = /bin/sh
19+
+SHELL = @SHELL@
20+
21+
srcdir = @srcdir@
22+
top_srcdir = @top_srcdir@
23+
--
24+
1.7.10.4
25+

0 commit comments

Comments
 (0)