aboutsummaryrefslogtreecommitdiffstats
path: root/lib/wx/configure.in
diff options
context:
space:
mode:
authorYAMAMOTO Takashi <[email protected]>2013-03-07 12:10:06 +0900
committerYAMAMOTO Takashi <[email protected]>2013-03-08 10:35:37 +0900
commitc1fdb0879f8383dfd5ef6c5e5a198ee3ba19df28 (patch)
treed4e9e6ac75e507dae2d84fe7b55fa47253b0a1ba /lib/wx/configure.in
parente66a60efcafb85c6bbfb6e1d08f850c42bee7a08 (diff)
downloadotp-c1fdb0879f8383dfd5ef6c5e5a198ee3ba19df28.tar.gz
otp-c1fdb0879f8383dfd5ef6c5e5a198ee3ba19df28.tar.bz2
otp-c1fdb0879f8383dfd5ef6c5e5a198ee3ba19df28.zip
reduce bashism
taken from from a pkgsrc patch: patch-lib_wx_configure.in
Diffstat (limited to 'lib/wx/configure.in')
-rwxr-xr-xlib/wx/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wx/configure.in b/lib/wx/configure.in
index 6a0d649ccd..9c55e544a4 100755
--- a/lib/wx/configure.in
+++ b/lib/wx/configure.in
@@ -71,7 +71,7 @@ WXERL_CAN_BUILD_DRIVER=true
LM_WINDOWS_ENVIRONMENT
-if test X"$MIXED_CYGWIN_VC" == X"yes" -o X"$MIXED_MSYS_VC" == X"yes"; then
+if test X"$MIXED_CYGWIN_VC" = X"yes" -o X"$MIXED_MSYS_VC" = X"yes"; then
CFLAGS="-Owx"
fi
@@ -336,7 +336,7 @@ dnl
if test "$cross_compiling" = "yes"; then
echo "Cross compilation of the wx driver is not supported yet, wx will NOT be usable" > ./CONF_INFO
WXERL_CAN_BUILD_DRIVER=false
-elif test X"$MIXED_CYGWIN_VC" == X"no" -a X"$MIXED_MSYS_VC" == X"no"; then
+elif test X"$MIXED_CYGWIN_VC" = X"no" -a X"$MIXED_MSYS_VC" = X"no"; then
WX_VERSION=`wx-config --version`
case $WX_VERSION in
2.8.*)