From bdd2e8ebf9ef25007d16eb17b76be7390c49cbcc Mon Sep 17 00:00:00 2001 From: Dan Willemsen Date: Sun, 8 May 2016 19:23:01 -0700 Subject: [PATCH] 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 --- core/build-system.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.11.0