Commit 18ddfd33 authored by Ying Wang's avatar Ying Wang
Browse files

Fix makefile function call syntax

Before this change the newline character will be carried to the shell
command so no files will be returned.

Change-Id: Id71358a54bff2a672c70a235b37ad06ef65a839b
parent a3647a65
......@@ -15,9 +15,9 @@ endef
#
# $(1): directory for search (to support use from frameworks/base)
define libcore_to_document
$(call libcoredoc-all-java-files-under,$(1),
$(call libcoredoc-all-java-files-under,$(1), \
dalvik/src/main/java/dalvik/system/ -maxdepth 1) \
$(call libcoredoc-all-java-files-under,$(1),
$(call libcoredoc-all-java-files-under,$(1), \
dalvik/src/main/java/dalvik/annotation \
dalvik/src/main/java/dalvik/bytecode \
json/src/main/java \
......
Markdown is supported
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