mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
unzip: Use the "-q" option to silence unzipping of source files
Add and use the "UNZIP" variable instead of calling directly unzip because the variable contains the "-q" option to silence "unzip" so it doesn't show the list of files extracted just like when tar files are being unpacked. Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> Cc: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
f787b51af5
commit
ac9621d995
@@ -11,7 +11,7 @@ PYTHON_KEYRING_SETUP_TYPE = setuptools
|
||||
PYTHON_KEYRING_LICENSE = python software foundation license
|
||||
|
||||
define PYTHON_KEYRING_EXTRACT_CMDS
|
||||
unzip -d $(@D) $(DL_DIR)/$(PYTHON_KEYRING_SOURCE)
|
||||
$(UNZIP) -d $(@D) $(DL_DIR)/$(PYTHON_KEYRING_SOURCE)
|
||||
mv $(@D)/keyring-$(PYTHON_KEYRING_VERSION)/* $(@D)
|
||||
$(RM) -r $(@D)/keyring-$(PYTHON_KEYRING_VERSION)
|
||||
endef
|
||||
|
||||
Reference in New Issue
Block a user