Kaydet (Commit) c3b6467a authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix check for "contained in PKGFORMAT"

Change-Id: I419e885a928c3f59e751f4da388f91ba5ffe739f
Reviewed-on: https://gerrit.libreoffice.org/51895Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
üst 030c30b3
......@@ -4996,7 +4996,7 @@ AC_MSG_CHECKING([for required Perl modules])
perl_use_string="use Cwd ; use Digest::MD5"
if test "$_os" = "WINNT"; then
if test -n "$PKGFORMAT"; then
for i in "$PKGFORMAT"; do
for i in $PKGFORMAT; do
case "$i" in
msi)
# for getting fonts versions to use in MSI
......@@ -6665,7 +6665,7 @@ if test $_os = "WINNT"; then
else
VCREDIST_DIR=""
if test -n "$PKGFORMAT"; then
for i in "$PKGFORMAT"; do
for i in $PKGFORMAT; do
case "$i" in
msi)
AC_MSG_WARN([--without-vcredist-dir not specified or exe not found - installer will have runtime dependency])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment