summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Udaltsov <svu@gnome.org>2009-01-21 22:01:31 +0000
committerSergey Udaltsov <svu@gnome.org>2009-01-21 22:01:31 +0000
commit560557a855e33f238ced50b16d32a774e97db549 (patch)
tree7048bab0a6a6b8fa4b829dcc6421f57f4df93f21
parentb817d69996c17a4e2c22b2b76769ac26b400d212 (diff)
downloadlibxklavier-560557a855e33f238ced50b16d32a774e97db549.tar.gz
bashisms fixed, b.fd.o#19645
-rw-r--r--ChangeLog5
-rw-r--r--configure.in14
2 files changed, 12 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 61c2a9c..0cb3f50 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-01-21 svu
+
+ * configure.in: eliminate bashisms,
+ http://bugs.freedesktop.org/show_bug.cgi?id=19645
+
2008-12-14 svu
* libxklavier/Makefile.am, tests/Makefile.am: small cygwin fixes,
diff --git a/configure.in b/configure.in
index 8788fb8..0647fde 100644
--- a/configure.in
+++ b/configure.in
@@ -126,9 +126,9 @@ AC_ARG_ENABLE(xmodmap-support,
AM_CONDITIONAL(ENABLE_XMODMAP_SUPPORT, test "$enable_xmodmap_support" = "yes")
AC_MSG_CHECKING(whether at least one libxklavier backend is enabled)
-if test \( "$enable_xkb_support" == "yes" -a \
- "$libxkbfile_present" == "yes" \) -o \
- "$enable_xmodmap_support" == "yes" ; then
+if test \( "$enable_xkb_support" = "yes" -a \
+ "$libxkbfile_present" = "yes" \) -o \
+ "$enable_xmodmap_support" = "yes" ; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
@@ -184,8 +184,8 @@ libxklavier.pc
echo '**********************************************************'
echo ' Libxklavier is configured with the following backends:'
-if test "$enable_xkb_support" == "yes" ; then
- if test "$libxkbfile_present" == "yes" ; then
+if test "$enable_xkb_support" = "yes" ; then
+ if test "$libxkbfile_present" = "yes" ; then
echo " XKB, libxkbfile is present"
echo " default ruleset: $xkb_default_ruleset"
echo " base: $xkb_base"
@@ -195,12 +195,12 @@ if test "$enable_xkb_support" == "yes" ; then
echo " XKB, libxkbfile is NOT present"
fi
fi
-if test "$enable_xmodmap_support" == "yes" ; then
+if test "$enable_xmodmap_support" = "yes" ; then
echo " xmodmap, default ruleset: $xmodmap_default_ruleset"
echo " base: $xmodmap_base"
fi
-if test "$enable_gtk_doc" == "yes" ; then
+if test "$enable_gtk_doc" = "yes" ; then
echo " gtk-doc enabled"
else
echo " gtk-doc disabled"