mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 07:51:59 -09:00
- use $(ZCAT) as configured by the user instead of hardcoded 'zcat' that may not exist; Closes #971
Silly, unchecked sed -i -e "/[^b]zcat/s/zcat/\$\(ZCAT\)/g" $(svngrep "[^b]zcat" * -rl | grep -v Config.in)
This commit is contained in:
@@ -8,7 +8,7 @@ SQLITE_VERSION=3.3.7
|
||||
SQLITE_SOURCE=sqlite-$(SQLITE_VERSION).tar.gz
|
||||
SQLITE_SITE=http://www.sqlite.org
|
||||
SQLITE_DIR=$(BUILD_DIR)/sqlite-$(SQLITE_VERSION)
|
||||
SQLITE_CAT:=zcat
|
||||
SQLITE_CAT:=$(ZCAT)
|
||||
|
||||
$(DL_DIR)/$(SQLITE_SOURCE):
|
||||
$(WGET) -P $(DL_DIR) $(SQLITE_SITE)/$(SQLITE_SOURCE)
|
||||
|
||||
Reference in New Issue
Block a user