bug-gettext
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug-gettext] [PATCH] gettext-runtime: use @SHELL@ for the SHELL variabl


From: Thomas Petazzoni
Subject: [bug-gettext] [PATCH] gettext-runtime: use @SHELL@ for the SHELL variable definition
Date: Tue, 28 May 2013 14:07:53 +0200

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 <address@hidden>
---
 gettext-runtime/intl/Makefile.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gettext-runtime/intl/Makefile.in b/gettext-runtime/intl/Makefile.in
index 0f3f46c..7151d39 100644
--- 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@
-- 
1.7.9.5




reply via email to

[Prev in Thread] Current Thread [Next in Thread]