summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary V. Vaughan <gary@gnu.org>2012-09-21 22:57:59 +0700
committerGary V. Vaughan <gary@gnu.org>2012-09-21 23:04:03 +0700
commit8aec0042b11b5e4f6c069260798fdaa4f0b715b5 (patch)
tree2414ab3761acab2368031ad617982f81d0e5271c
parente059dd2b01921311f72f7214e4d1644ce948b8bc (diff)
downloadlibtool-gary/redo-test-operand-order.tar.gz
syntax-check: fix remaining violations of sc_prohibit_test_const_follows_var.gary/redo-test-operand-order
* configure.ac, doc/libtool.texi: Swap operands and remove resulting spurious characters. Signed-off-by: Gary V. Vaughan <gary@gnu.org>
-rw-r--r--configure.ac2
-rw-r--r--doc/libtool.texi2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 5772c71c..517f7066 100644
--- a/configure.ac
+++ b/configure.ac
@@ -114,7 +114,7 @@ AC_SUBST([pkgdatadir], ["\$(datadir)/$PACKAGE"])
AC_ARG_ENABLE(ltdl-install,
[AS_HELP_STRING([--disable-ltdl-install], [do not install libltdl])])
-if test "x${enable_ltdl_install+set}" != xset; then
+if test set != "${enable_ltdl_install+set}"; then
enable_ltdl_install=yes
fi
diff --git a/doc/libtool.texi b/doc/libtool.texi
index 93803ac2..77d65bcd 100644
--- a/doc/libtool.texi
+++ b/doc/libtool.texi
@@ -4756,7 +4756,7 @@ LT_INIT([dlopen])
LTDL_INIT
# The lt_dladvise_init symbol was added with libtool-2.2
-if test "x$with_included_ltdl" != "xyes"; then
+if test yes != "$with_included_ltdl"; then
save_CFLAGS=$CFLAGS
save_LDFLAGS=$LDFLAGS
CFLAGS="$CFLAGS $LTDLINCL"