[vlc-commits] configure: Add a missing $ for a variable expansion

Martin Storsjö git at videolan.org
Thu Feb 7 11:48:12 CET 2019


vlc | branch: master | Martin Storsjö <martin at martin.st> | Thu Feb  7 12:32:30 2019 +0200| [8a695c31d37b2e9c66b6788d974536cb3d06afc5] | committer: Martin Storsjö

configure: Add a missing $ for a variable expansion

This fixes the test for setting HAVE_X86ASM.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8a695c31d37b2e9c66b6788d974536cb3d06afc5
---

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 9453dd852b..1e142f42c9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -354,7 +354,7 @@ AM_CONDITIONAL([HAVE_WIN32_DESKTOP], [test "${SYS}" = "mingw32" -a "$vlc_winstor
 
 dnl Use nasm/yasm only on x86
 AC_CHECK_PROGS(X86ASM, [nasm yasm])
-AM_CONDITIONAL([HAVE_X86ASM], [test -n "${X86ASM}" && test -n "{X86ASMFLAGS}"])
+AM_CONDITIONAL([HAVE_X86ASM], [test -n "${X86ASM}" && test -n "${X86ASMFLAGS}"])
 AM_COND_IF([HAVE_X86ASM], [
   AC_DEFINE([HAVE_X86ASM], [1], [Use external asm on x86.])
 ])



More information about the vlc-commits mailing list