Merge pull request #1114 from tvon/fix-rkt-gpg-command
Use backticks inline instead of $(shell ...) in rkt-bin.mkpull/1126/head
commit
776840c955
|
@ -21,7 +21,7 @@ define RKT_BIN_BUILD_CMDS
|
|||
gpg2 --import $(BR2_DL_DIR)/app-signing-pubkey.gpg
|
||||
|
||||
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
|
||||
|
||||
mkdir -p $(TARGET_DIR)/var/lib/rkt
|
||||
|
|
Loading…
Reference in New Issue