summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2021-10-12 22:12:34 +0200
committerHans Ulrich Niedermann <hun@n-dimensional.de>2021-10-19 05:13:17 +0200
commit4c560cf7164f2ed3027ee00a7b00e8f4978ab6eb (patch)
tree57d9492c48bf9c4e256962eab976acc96f661a49 /configure.ac
parentbb625e03ea0c79426c6ffdceaee8b9513c5d8caa (diff)
downloadlibgphoto2-4c560cf7164f2ed3027ee00a7b00e8f4978ab6eb.tar.gz
Use && and || instead of test arguments -a and -o
For portability, use && and || instead of the test arguments -a and -o.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 0b15d0762..ac0f69f32 100644
--- a/configure.ac
+++ b/configure.ac
@@ -205,7 +205,7 @@ dnl AC_CHECK_FUNC(gettext, gettext_without_libintl=true)
# if gettext() doesn't require linking against libintl,
# we don't have to check for gettext in libintl. Otherwise
# we may even require libintl.
-dnl if test "$gettext_without_libintl" != "true" -a "$USE_NLS" = "yes"; then
+dnl if test "x$gettext_without_libintl" != xtrue && test "x$USE_NLS" = xyes; then
dnl AC_CHECK_LIB([intl], [gettext], [INTLLIBS="$INTLLIBS -lintl"])
dnl fi