summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2014-10-02 10:52:41 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-10-03 22:33:02 +0000
commit78d7ec67a80d65a967174396d7a47b2d0566a6bb (patch)
tree4f01a00d1744609c071752dfc70c47606d738541
parentaa50e19dbd6124df33c1a90b7d07e65e91898d60 (diff)
downloadvboot-78d7ec67a80d65a967174396d7a47b2d0566a6bb.tar.gz
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/. Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/221177 Reviewed-by: Mike Frysinger <vapier@chromium.org> (cherry picked from commit 4d49d34c4ba5aa64ca7aeb26c77e170b2cf2462f) Signed-off-by: Duncan Laurie <dlaurie@chromium.org> Change-Id: I48d3a780533c5b72cc18720d39b18ac286b07fd9 Reviewed-on: https://chromium-review.googlesource.com/221502 Tested-by: Duncan Laurie <dlaurie@chromium.org> Reviewed-by: Duncan Laurie <dlaurie@chromium.org> Commit-Queue: Duncan Laurie <dlaurie@chromium.org>
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index d5f00885..17faf4ff 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.