summaryrefslogtreecommitdiffstats
path: root/core/product_config.mk
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2012-09-20 16:35:36 -0700
committerYing Wang <wangying@google.com>2012-09-20 16:37:55 -0700
commit4b0486b4a6108ea863da6232cc376cd1edc55640 (patch)
treee123f5633d92209b87f40ecacf1e3f3d544f4f28 /core/product_config.mk
parent7884dfc645dba2a36653a190b766a0af492d8079 (diff)
downloadreplicant_build-4b0486b4a6108ea863da6232cc376cd1edc55640.zip
replicant_build-4b0486b4a6108ea863da6232cc376cd1edc55640.tar.gz
replicant_build-4b0486b4a6108ea863da6232cc376cd1edc55640.tar.bz2
Allow to tag owner to PRODUCT_COPY_FILES
PRODUCT_COPY_FILES now is a list of words like <source path>:<destination path>[:<owner>]. The optional :<owner> is used to indicate the owner of a vendor file. Bug: 7048854 Change-Id: I435d1e18b7a091fb62513062cfc2e420e51557ec
Diffstat (limited to 'core/product_config.mk')
-rw-r--r--core/product_config.mk11
1 files changed, 6 insertions, 5 deletions
diff --git a/core/product_config.mk b/core/product_config.mk
index 9c85d2c..7bb1852 100644
--- a/core/product_config.mk
+++ b/core/product_config.mk
@@ -284,11 +284,12 @@ ifneq (1,$(words $(PRODUCT_DEFAULT_DEV_CERTIFICATE)))
endif
endif
-# A list of words like <source path>:<destination path>. The file at
-# the source path should be copied to the destination path when building
-# this product. <destination path> is relative to $(PRODUCT_OUT), so
-# it should look like, e.g., "system/etc/file.xml". The rules
-# for these copy steps are defined in config/Makefile.
+# A list of words like <source path>:<destination path>[:<owner>].
+# The file at the source path should be copied to the destination path
+# when building this product. <destination path> is relative to
+# $(PRODUCT_OUT), so it should look like, e.g., "system/etc/file.xml".
+# The rules for these copy steps are defined in build/core/Makefile.
+# The optional :<owner> is used to indicate the owner of a vendor file.
PRODUCT_COPY_FILES := \
$(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_COPY_FILES))