From: Dan Willemsen Date: Mon, 9 May 2016 02:23:01 +0000 (-0700) Subject: Fix build system documentation example X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=bdd2e8ebf9ef25007d16eb17b76be7390c49cbcc;p=android-x86%2Fbuild.git Fix build system documentation example The input and output file paths were mixed up in this example. Properly indicate the input file as a dependency. Change-Id: I71271025c6ce3ef8f82b10aee91fc0c7ae8f2399 --- diff --git a/core/build-system.html b/core/build-system.html index bddde6a4d..95f35ce82 100644 --- a/core/build-system.html +++ b/core/build-system.html @@ -438,7 +438,7 @@ intermediates:= $(local-generated-sources-dir) GEN := $(intermediates)/file.c $(GEN): PRIVATE_INPUT_FILE := $(LOCAL_PATH)/input.file $(GEN): PRIVATE_CUSTOM_TOOL = cat $(PRIVATE_INPUT_FILE) > $@ -$(GEN): $(LOCAL_PATH)/file.c +$(GEN): $(LOCAL_PATH)/input.file $(transform-generated-source) LOCAL_GENERATED_SOURCES += $(GEN)