diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2009-07-30 17:31:51 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2009-09-05 14:43:17 +0200 |
commit | 3c35d55ea976148bfb479b40b904d5b37b71ecb6 (patch) | |
tree | 30ddbc2117e45900888a14be274518c45241e174 /package/Makefile.autotools.in | |
parent | 6cdf2481ee620843d56391a7a658c04b772d6c19 (diff) | |
download | buildroot-novena-3c35d55ea976148bfb479b40b904d5b37b71ecb6.tar.gz buildroot-novena-3c35d55ea976148bfb479b40b904d5b37b71ecb6.zip |
packages: use qstrip
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/Makefile.autotools.in')
-rw-r--r-- | package/Makefile.autotools.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index d6da7e86a..859e7bcf4 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -140,7 +140,7 @@ DOWNLOAD=$(WGET) -P $(DL_DIR) $(1)/$(2) else define DOWNLOAD $(Q)test -e $(DL_DIR)/$(2) || \ - for site in $(strip $(subst ",,$(BR2_PRIMARY_SITE))) $(1) $(strip $(subst ",,$(BR2_BACKUP_SITE))); \ + for site in $(call qstrip,$(BR2_PRIMARY_SITE)) $(1) $(call qstrip,$(BR2_BACKUP_SITE)); \ do $(WGET) -P $(DL_DIR) $$site/$(2) && exit; done endef endif |