summaryrefslogtreecommitdiffstats
path: root/Android.libv8.mk
diff options
context:
space:
mode:
authorStefan Becker <stefanb@nvidia.com>2011-12-21 08:56:36 -0800
committerJean-Baptiste Queru <jbq@google.com>2011-12-21 09:23:39 -0800
commit96aa864840874f6008eafd4fd9d88530328d41fa (patch)
treef78690a3f0e26d967e705ca8ee4f2234d3410615 /Android.libv8.mk
parentdd64082eb6a4ce03773f271329bd10a6f582b80e (diff)
downloadandroid_external_v8-96aa864840874f6008eafd4fd9d88530328d41fa.tar.gz
android_external_v8-96aa864840874f6008eafd4fd9d88530328d41fa.tar.bz2
android_external_v8-96aa864840874f6008eafd4fd9d88530328d41fa.zip
build: mksnapshot should not create v8.log in $TOP
Add --logfile option to mksnapshot command line to generate v8.log in the intermediates directory instead of the source tree.
Diffstat (limited to 'Android.libv8.mk')
-rw-r--r--Android.libv8.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.libv8.mk b/Android.libv8.mk
index a7abe3c5..f5a62cef 100644
--- a/Android.libv8.mk
+++ b/Android.libv8.mk
@@ -49,7 +49,7 @@ LOCAL_GENERATED_SOURCES += $(V8_GENERATED_LIBRARIES)
ifeq ($(ENABLE_V8_SNAPSHOT),true)
SNAP_GEN := $(intermediates)/snapshot.cc
MKSNAPSHOT := $(HOST_OUT_EXECUTABLES)/mksnapshot
-$(SNAP_GEN): PRIVATE_CUSTOM_TOOL = $(MKSNAPSHOT) $(SNAP_GEN)
+$(SNAP_GEN): PRIVATE_CUSTOM_TOOL = $(MKSNAPSHOT) --logfile $(intermediates)/v8.log $(SNAP_GEN)
$(SNAP_GEN): $(MKSNAPSHOT)
$(transform-generated-source)
LOCAL_GENERATED_SOURCES += $(SNAP_GEN)