From 4d49d34c4ba5aa64ca7aeb26c77e170b2cf2462f Mon Sep 17 00:00:00 2001 From: Bill Richardson Date: Thu, 2 Oct 2014 10:52:41 -0700 Subject: [PATCH] Don't install vbutil_what_keys on the target BUG=chromium:419773 BRANCH=ToT TEST=manual make MINIMAL=1 DESTDIR=FOO install make MINIMAL= DESTDIR=BAR install find FOO BAR -name vbutil_what_keys It should only install the script into BAR/. Change-Id: I48d3a780533c5b72cc18720d39b18ac286b07fd9 Signed-off-by: Bill Richardson Reviewed-on: https://chromium-review.googlesource.com/221177 Reviewed-by: Mike Frysinger --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d5f00885de..17faf4ff05 100644 --- a/Makefile +++ b/Makefile @@ -460,12 +460,12 @@ ALL_OBJS += ${CGPT_OBJS} # Scripts to install directly (not compiled) UTIL_SCRIPTS = \ utility/dev_debug_vboot \ - utility/enable_dev_usb_boot \ - utility/vbutil_what_keys + utility/enable_dev_usb_boot ifeq (${MINIMAL},) UTIL_SCRIPTS += \ - utility/dev_make_keypair + utility/dev_make_keypair \ + utility/vbutil_what_keys endif # These utilities should be linked statically.