diff options
author | Dave Yeo <dave.r.yeo@gmail.com> | 2012-10-30 23:48:26 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-31 13:50:01 +0100 |
commit | 264f12342c3e71e4ecc9a2993e656e064f774105 (patch) | |
tree | e003b417ed36f7e99db4056c013ee69719bf1eaf /libavutil/x86/x86util.asm | |
parent | 3174616f598665cfbe0c920d6e6c4d027fda9ca5 (diff) | |
download | ffmpeg-264f12342c3e71e4ecc9a2993e656e064f774105.tar.gz |
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 <diego@biurrun.de>
Diffstat (limited to 'libavutil/x86/x86util.asm')
-rw-r--r-- | libavutil/x86/x86util.asm | 2 |
1 files changed, 1 insertions, 1 deletions
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 |