Commit 56e8485c authored by Johann's avatar Johann
Browse files

darwin universal builds need BUILD_PFX

Universal builds create subdirectories for each target. Without
BUILD_PFX we only generated one vpx_rtcd.h instead of one for each.

Change-Id: I1caed4e018c8865ffc8da15e434cae2b96154fb4
Showing with 2 additions and 2 deletions
...@@ -329,8 +329,8 @@ CLEAN-OBJS += $(BUILD_PFX)vpx_version.h ...@@ -329,8 +329,8 @@ CLEAN-OBJS += $(BUILD_PFX)vpx_version.h
# #
# Rule to generate runtime cpu detection files # Rule to generate runtime cpu detection files
# #
$(OBJS-yes:.o=.d): vpx_rtcd.h $(OBJS-yes:.o=.d): $(BUILD_PFX)vpx_rtcd.h
vpx_rtcd.h: $(SRC_PATH_BARE)/$(sort $(filter %rtcd_defs.sh,$(CODEC_SRCS))) $(BUILD_PFX)vpx_rtcd.h: $(SRC_PATH_BARE)/$(sort $(filter %rtcd_defs.sh,$(CODEC_SRCS)))
@echo " [CREATE] $@" @echo " [CREATE] $@"
$(qexec)$(SRC_PATH_BARE)/build/make/rtcd.sh --arch=$(TGT_ISA) \ $(qexec)$(SRC_PATH_BARE)/build/make/rtcd.sh --arch=$(TGT_ISA) \
--sym=vpx_rtcd \ --sym=vpx_rtcd \
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment