summaryrefslogtreecommitdiff
path: root/build/make
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2010-10-25 10:28:45 -0400
committerJohn Koleszar <jkoleszar@google.com>2010-10-25 10:28:45 -0400
commit2ad4810a215bec3c944ee9e4a71f7aec58dc0f15 (patch)
tree61b5739e5e0d284e1e5841f7807b2005346199bb /build/make
parent1376f061dae199af3378339367a1bc9f95fd4187 (diff)
downloadlibvpx-2ad4810a215bec3c944ee9e4a71f7aec58dc0f15.tar.gz
NASM: trailing slash for ASFLAGS includes
Fix out-of-tree builds using NASM. NASM expects its include paths to have a trailing slash. These aren't used used when doing in-tree builds (./configure) Change-Id: I38d469d15acb1b7e65733a2e5ca8c9d86fa4ad86
Diffstat (limited to 'build/make')
-rwxr-xr-xbuild/make/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/make/Makefile b/build/make/Makefile
index 1ca747a26..40fa6d50c 100755
--- a/build/make/Makefile
+++ b/build/make/Makefile
@@ -65,7 +65,7 @@ endif
BUILD_ROOT?=.
VPATH=$(SRC_PATH_BARE)
CFLAGS+=-I$(BUILD_PFX)$(BUILD_ROOT) -I$(SRC_PATH)
-ASFLAGS+=-I$(BUILD_PFX)$(BUILD_ROOT) -I$(SRC_PATH)
+ASFLAGS+=-I$(BUILD_PFX)$(BUILD_ROOT)/ -I$(SRC_PATH)/
DIST_DIR?=dist
HOSTCC?=gcc
TGT_ISA:=$(word 1, $(subst -, ,$(TOOLCHAIN)))