mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 22:26:31 +00:00
core/pkg-download: fix autobuilder fallout
Some arguments can be empty, so we need to add single quote around them But since they are sinple quote; double quote inside them are now not interpreted by the shell and as such must be removed; hence the use of qstrip. Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
55ec9b4e40
commit
765e94ea4d
@ -75,12 +75,12 @@ export BR_NO_CHECK_HASH_FOR =
|
|||||||
|
|
||||||
ifneq ($(call qstrip,$(BR2_PRIMARY_SITE)),)
|
ifneq ($(call qstrip,$(BR2_PRIMARY_SITE)),)
|
||||||
DOWNLOAD_URIS += \
|
DOWNLOAD_URIS += \
|
||||||
-u $(call getschemeplusuri,$(BR2_PRIMARY_SITE),urlencode)
|
-u $(call getschemeplusuri,$(call qstrip,$(BR2_PRIMARY_SITE)),urlencode)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PRIMARY_SITE_ONLY),)
|
ifeq ($(BR2_PRIMARY_SITE_ONLY),)
|
||||||
DOWNLOAD_URIS += \
|
DOWNLOAD_URIS += \
|
||||||
-u $($(PKG)_SITE_METHOD)+$(dir $(1))
|
-u $($(PKG)_SITE_METHOD)+$(dir $(call qstrip,$(1)))
|
||||||
ifneq ($(call qstrip,$(BR2_BACKUP_SITE)),)
|
ifneq ($(call qstrip,$(BR2_BACKUP_SITE)),)
|
||||||
DOWNLOAD_URIS += \
|
DOWNLOAD_URIS += \
|
||||||
-u $(call getschemeplusuri,$(BR2_BACKUP_SITE),urlencode)
|
-u $(call getschemeplusuri,$(BR2_BACKUP_SITE),urlencode)
|
||||||
@ -88,14 +88,15 @@ endif
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
define DOWNLOAD
|
define DOWNLOAD
|
||||||
$(Q)$(if $(filter bzr cvs hg svn,$($(PKG)_SITE_METHOD)),BR_NO_CHECK_HASH_FOR=$(notdir $(1))) \
|
$(Q)$(if $(filter bzr cvs hg svn,$($(PKG)_SITE_METHOD)),
|
||||||
|
BR_NO_CHECK_HASH_FOR=$(notdir $(call qstrip,$(1)))) \
|
||||||
$(EXTRA_ENV) $(DL_WRAPPER) \
|
$(EXTRA_ENV) $(DL_WRAPPER) \
|
||||||
-c $($(PKG)_DL_VERSION) \
|
-c '$($(PKG)_DL_VERSION)' \
|
||||||
-f $(notdir $(1)) \
|
-f '$(notdir $(1))' \
|
||||||
-H $(PKGDIR)/$($(PKG)_RAWNAME).hash \
|
-H '$(PKGDIR)/$($(PKG)_RAWNAME).hash' \
|
||||||
-n $($(PKG)_BASENAME_RAW) \
|
-n '$($(PKG)_BASENAME_RAW)' \
|
||||||
-N $($(PKG)_RAWNAME) \
|
-N '$($(PKG)_RAWNAME)' \
|
||||||
-o $(DL_DIR)/$(notdir $(1)) \
|
-o '$(DL_DIR)/$(notdir $(1))' \
|
||||||
$(if $($(PKG)_GIT_SUBMODULES),-r) \
|
$(if $($(PKG)_GIT_SUBMODULES),-r) \
|
||||||
$(DOWNLOAD_URIS) \
|
$(DOWNLOAD_URIS) \
|
||||||
$(QUIET) \
|
$(QUIET) \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user