summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrzej Hunt <andrzej@ahunt.org>2015-06-04 14:02:05 +0100
committerKatarina Behrens <Katarina.Behrens@cib.de>2015-07-16 10:40:23 +0000
commit8c0ace56528cfd469d55c17a6e9b32c33e715ec0 (patch)
tree74f1c0a9015cbd3fb4e85635a51479c050b56144
parent9c20406420966ae8cdc866a8d4fef2b949529a07 (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> (cherry picked from commit a3afa22ba4069212213009fc7304adc3c339b68b) Reviewed-on: https://gerrit.libreoffice.org/17124 Reviewed-by: David Ostrovsky <david@ostrovsky.org> Tested-by: Katarina Behrens <Katarina.Behrens@cib.de>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 90b13c8de5ea..cf63d276560c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7459,7 +7459,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