diff options
author | Dave Yeo <dave.r.yeo@gmail.com> | 2012-10-30 23:48:26 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-31 10:20:35 +0100 |
commit | 9c167914a1d88192882fe09dfce430a299580a8a (patch) | |
tree | 39a4bdc8de669fc0109447915198c19013cddd08 /libavutil | |
parent | be2c456e962ab0a748164e0e43d0d74cc0d704fa (diff) | |
download | ffmpeg-9c167914a1d88192882fe09dfce430a299580a8a.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')
-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 d7ec5948e5..4c6f4c63ab 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 |