From 264f12342c3e71e4ecc9a2993e656e064f774105 Mon Sep 17 00:00:00 2001 From: Dave Yeo Date: Tue, 30 Oct 2012 23:48:26 -0700 Subject: [PATCH] x86: Fix assembly with NASM Unlike YASM, NASM only looks for include files in the current directory, not in the directory that included files reside in. Signed-off-by: Diego Biurrun --- libavutil/x86/x86util.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/x86/x86util.asm b/libavutil/x86/x86util.asm index f7c6e3e6f1..2eefeff3c9 100644 --- a/libavutil/x86/x86util.asm +++ b/libavutil/x86/x86util.asm @@ -23,7 +23,7 @@ ;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ;****************************************************************************** -%include "x86inc.asm" +%include "libavutil/x86/x86inc.asm" %macro SBUTTERFLY 4 %if avx_enabled == 0