[Libreoffice-commits] core.git: configure.ac
Stephan Bergmann
sbergman at redhat.com
Mon Mar 26 20:41:08 UTC 2018
configure.ac | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 35c177ba8164c4fc886ecbc80cab9c534e18ea85
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Mon Mar 26 16:40:44 2018 +0200
Fix quoting
Change-Id: Ieb820193f1d99bd977959633b5df09b19b01f56c
Reviewed-on: https://gerrit.libreoffice.org/51907
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
diff --git a/configure.ac b/configure.ac
index 7df36be8b0c9..d79fe78ecd9a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5006,14 +5006,14 @@ if test "$_os" = "WINNT"; then
done
fi
fi
-if $PERL -e '$perl_use_string'>/dev/null 2>&1; then
+if $PERL -e "$perl_use_string">/dev/null 2>&1; then
AC_MSG_RESULT([all modules found])
else
AC_MSG_RESULT([failed to find some modules])
# Find out which modules are missing.
- for i in "$perl_use_string"; do
+ for i in $perl_use_string; do
if test "$i" != "use" -a "$i" != ";"; then
- if ! $PERL -e 'use $i;'>/dev/null 2>&1; then
+ if ! $PERL -e "use $i;">/dev/null 2>&1; then
missing_perl_modules="$missing_perl_modules $i"
fi
fi
More information about the Libreoffice-commits
mailing list