Merge pull request #1114 from tvon/fix-rkt-gpg-command

Use backticks inline instead of $(shell ...) in rkt-bin.mk
pull/1126/head
dlorenc 2017-02-13 10:14:39 -08:00 committed by GitHub
commit 776840c955
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ define RKT_BIN_BUILD_CMDS
gpg2 --import $(BR2_DL_DIR)/app-signing-pubkey.gpg gpg2 --import $(BR2_DL_DIR)/app-signing-pubkey.gpg
gpg2 \ gpg2 \
--trusted-key $(shell gpg2 --with-colons --keyid-format LONG -k security@coreos.com | egrep ^pub | cut -d ':' -f5) \ --trusted-key `gpg2 --with-colons --keyid-format long -k security@coreos.com | egrep ^pub | cut -d ':' -f5` \
--verify-files $(BR2_DL_DIR)/rkt-v$(RKT_BIN_VERSION).tar.gz.asc --verify-files $(BR2_DL_DIR)/rkt-v$(RKT_BIN_VERSION).tar.gz.asc
mkdir -p $(TARGET_DIR)/var/lib/rkt mkdir -p $(TARGET_DIR)/var/lib/rkt