mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 16:01:54 -09:00
Makefile.autotools.in: fix BR2_PRIMARY_SITE check
Empty strings gets defined to "", so check for that instead of if the variable is defined.
This commit is contained in:
@@ -135,7 +135,8 @@ ifneq ($(filter source,$(MAKECMDGOALS)),)
|
||||
$(WGET) -P $(DL_DIR) $($(PKG)_SITE)/$($(PKG)_SOURCE)
|
||||
else
|
||||
$(call MESSAGE,"Downloading")
|
||||
ifdef BR2_PRIMARY_SITE
|
||||
ifneq ($(strip $(subst ",,$(BR2_PRIMARY_SITE))),)
|
||||
#"))
|
||||
-$(Q)test -e $(DL_DIR)/$($(PKG)_SOURCE) || $(WGET) -P $(DL_DIR) $(BR2_PRIMARY_SITE)/$($(PKG)_SOURCE)
|
||||
endif
|
||||
$(Q)test -e $(DL_DIR)/$($(PKG)_SOURCE) || $(WGET) -P $(DL_DIR) $($(PKG)_SITE)/$($(PKG)_SOURCE)
|
||||
|
||||
Reference in New Issue
Block a user