configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit 35c177ba8164c4fc886ecbc80cab9c534e18ea85 Author: Stephan Bergmann <sberg...@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 <c...@libreoffice.org> Reviewed-by: Stephan Bergmann <sberg...@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 _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits