diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-03-26 16:40:44 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-03-26 22:40:33 +0200 |
commit | 35c177ba8164c4fc886ecbc80cab9c534e18ea85 (patch) | |
tree | eed58fc9634286e3df9b2022c55065d6e75cf52d /configure.ac | |
parent | 14b2c7ba73353078b160a26caa03c7f6e4ad019a (diff) |
Fix quoting
Change-Id: Ieb820193f1d99bd977959633b5df09b19b01f56c
Reviewed-on: https://gerrit.libreoffice.org/51907
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
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 |