diff options
author | Dave Yeo | 2011-08-14 11:46:18 -0700 |
---|---|---|
committer | Ronald S. Bultje | 2011-08-15 11:24:35 -0700 |
commit | cc73511e8e81b2e1454f406acb71da9fd1c60d32 (patch) | |
tree | c246ae378865a3d886441b45ca8742ca28291ef0 /Makefile | |
parent | 48f7163f13471cc74fb333bb83d1132c8ffdc1ee (diff) |
Fix NASM include directive
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ IFLAGS := -I. -I$(SRC_PATH) CPPFLAGS := $(IFLAGS) $(CPPFLAGS) CFLAGS += $(ECFLAGS) CCFLAGS = $(CFLAGS) -YASMFLAGS += $(IFLAGS) -Pconfig.asm +YASMFLAGS += $(IFLAGS) -I$(SRC_PATH)/libavutil/x86/ -Pconfig.asm HOSTCFLAGS += $(IFLAGS) LDFLAGS := $(ALLFFLIBS:%=-Llib%) $(LDFLAGS) |