summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorAndrzej Hunt <andrzej@ahunt.org>2015-06-04 14:02:05 +0100
committerMichael Stahl <mstahl@redhat.com>2015-06-04 19:31:33 +0000
commita3afa22ba4069212213009fc7304adc3c339b68b (patch)
treec1efa7c03f93ae85bc97e26d380fb4defbb6fbb3 /configure.ac
parent2d3517d8532702386dddde1215737fe29719c2c3 (diff)
Fix using /opt/lo/bin/nasm on windows/cygwin
Change-Id: Ib3755598bfccffc2efd67816ae5fa5dc8903553e Reviewed-on: https://gerrit.libreoffice.org/16083 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 85bbd222eba7..c7483a0d75f8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7458,7 +7458,7 @@ else
if test -z "$NASM" -a "$build_os" = "cygwin"; then
if test -n "$LODE_HOME" -a -x "$LODE_HOME/opt/bin/nasm"; then
NASM="$LODE_HOME/opt/bin/nasm"
- elif -x "/opt/lo/bin/nasm"; then
+ elif test -x "/opt/lo/bin/nasm"; then
NASM="/opt/lo/bin/nasm"
fi
fi