diff options
author | Mans Rullgard | 2012-08-06 00:17:40 +0100 |
---|---|---|
committer | Mans Rullgard | 2012-08-07 15:21:40 +0100 |
commit | f295fee2c971e2e15bcc65321d86e12cba42b1b5 (patch) | |
tree | 25577f45407ec39edab78e89493b6c07031fd13f /Makefile | |
parent | 2b140a3d091de2bd54687df1b2aa6608549fb6ee (diff) |
build: add trailing / to yasm/nasm -I flags
nasm requires a trailing / on paths specified with -I.
It does no harm with yasm.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ CPPFLAGS := $(IFLAGS) $(CPPFLAGS) CFLAGS += $(ECFLAGS) CCFLAGS = $(CPPFLAGS) $(CFLAGS) ASFLAGS := $(CPPFLAGS) $(ASFLAGS) -YASMFLAGS += $(IFLAGS) -I$(SRC_PATH)/libavutil/x86/ -Pconfig.asm +YASMFLAGS += $(IFLAGS:%=%/) -I$(SRC_PATH)/libavutil/x86/ -Pconfig.asm HOSTCCFLAGS = $(IFLAGS) $(HOSTCFLAGS) LDFLAGS := $(ALLFFLIBS:%=-Llib%) $(LDFLAGS) |