mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-27 13:16:35 +00:00
Merge branch 'for-2010.11/download-rework' of git://git.busybox.net/~tpetazzoni/git/buildroot
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
commit
a172611725
3
CHANGES
3
CHANGES
@ -10,6 +10,9 @@
|
|||||||
Old-style package hooks (*_HOOK_POST_*) removed. Use the more
|
Old-style package hooks (*_HOOK_POST_*) removed. Use the more
|
||||||
generic new-style ones instead.
|
generic new-style ones instead.
|
||||||
|
|
||||||
|
Download handling reworked and support for git/svn downloads
|
||||||
|
added.
|
||||||
|
|
||||||
Updated/fixed packages: alsa-lib, at, avahi, berkeleydb, bind,
|
Updated/fixed packages: alsa-lib, at, avahi, berkeleydb, bind,
|
||||||
bmon, bridge-utils, busybox, dbus, dmraid, docker, dropbear,
|
bmon, bridge-utils, busybox, dbus, dmraid, docker, dropbear,
|
||||||
e2fsprogs, expat, freetype, gawk, gvfs, haserl, hostapd,
|
e2fsprogs, expat, freetype, gawk, gvfs, haserl, hostapd,
|
||||||
|
24
Config.in
24
Config.in
@ -21,25 +21,17 @@ config BR2_WGET
|
|||||||
string "Wget command"
|
string "Wget command"
|
||||||
default "wget --passive-ftp -nd"
|
default "wget --passive-ftp -nd"
|
||||||
|
|
||||||
config BR2_SVN_CO
|
config BR2_SVN
|
||||||
string "Subversion (svn) command to download source tree"
|
string "Subversion (svn) command"
|
||||||
default "svn co"
|
default "svn"
|
||||||
|
|
||||||
config BR2_SVN_UP
|
config BR2_BZR
|
||||||
string "Subversion (svn) command to update source tree"
|
string "Bazaar (bzr) command"
|
||||||
default "svn up"
|
default "bzr"
|
||||||
|
|
||||||
config BR2_BZR_CO
|
|
||||||
string "Bazaar (bzr) command to download source tree"
|
|
||||||
default "bzr co"
|
|
||||||
|
|
||||||
config BR2_BZR_UP
|
|
||||||
string "Bazaar (bzr) command to update source tree"
|
|
||||||
default "bzr up"
|
|
||||||
|
|
||||||
config BR2_GIT
|
config BR2_GIT
|
||||||
string "Git command to download source tree"
|
string "Git command"
|
||||||
default "git clone"
|
default "git"
|
||||||
|
|
||||||
config BR2_ZCAT
|
config BR2_ZCAT
|
||||||
string "zcat command"
|
string "zcat command"
|
||||||
|
16
Makefile
16
Makefile
@ -244,21 +244,10 @@ ifeq ($(ARCH),xtensa)
|
|||||||
ARCH:=$(ARCH)_$(call qstrip,$(BR2_xtensa_core_name))
|
ARCH:=$(ARCH)_$(call qstrip,$(BR2_xtensa_core_name))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
WGET:=$(call qstrip,$(BR2_WGET)) $(SPIDER) $(QUIET)
|
|
||||||
SVN_CO:=$(call qstrip,$(BR2_SVN_CO)) $(QUIET)
|
|
||||||
SVN_UP:=$(call qstrip,$(BR2_SVN_UP)) $(QUIET)
|
|
||||||
BZR_CO:=$(call qstrip,$(BR2_BZR_CO)) $(QUIET)
|
|
||||||
BZR_UP:=$(call qstrip,$(BR2_BZR_UP)) $(QUIET)
|
|
||||||
GIT:=$(call qstrip,$(BR2_GIT)) $(QUIET)
|
|
||||||
ZCAT:=$(call qstrip,$(BR2_ZCAT))
|
ZCAT:=$(call qstrip,$(BR2_ZCAT))
|
||||||
BZCAT:=$(call qstrip,$(BR2_BZCAT))
|
BZCAT:=$(call qstrip,$(BR2_BZCAT))
|
||||||
TAR_OPTIONS=$(call qstrip,$(BR2_TAR_OPTIONS)) -xf
|
TAR_OPTIONS=$(call qstrip,$(BR2_TAR_OPTIONS)) -xf
|
||||||
|
|
||||||
DL_DIR=$(call qstrip,$(BR2_DL_DIR))
|
|
||||||
ifeq ($(DL_DIR),)
|
|
||||||
DL_DIR:=$(TOPDIR)/dl
|
|
||||||
endif
|
|
||||||
|
|
||||||
GNU_TARGET_SUFFIX:=-$(call qstrip,$(BR2_GNU_TARGET_SUFFIX))
|
GNU_TARGET_SUFFIX:=-$(call qstrip,$(BR2_GNU_TARGET_SUFFIX))
|
||||||
|
|
||||||
STAGING_DIR:=$(call qstrip,$(BR2_STAGING_DIR))
|
STAGING_DIR:=$(call qstrip,$(BR2_STAGING_DIR))
|
||||||
@ -437,11 +426,10 @@ endif
|
|||||||
source: $(TARGETS_SOURCE) $(HOST_SOURCE)
|
source: $(TARGETS_SOURCE) $(HOST_SOURCE)
|
||||||
|
|
||||||
_source-check:
|
_source-check:
|
||||||
$(MAKE) $(EXTRAMAKEARGS) SPIDER=--spider source
|
$(MAKE) DL_MODE=SOURCE_CHECK $(EXTRAMAKEARGS) source
|
||||||
|
|
||||||
external-deps:
|
external-deps:
|
||||||
@$(MAKE) -Bs BR2_WGET=$(TOPDIR)/toolchain/wget-show-external-deps.sh \
|
@$(MAKE) -Bs DL_MODE=SHOW_EXTERNAL_DEPS $(EXTRAMAKEARGS) source
|
||||||
$(EXTRAMAKEARGS) SPIDER=--spider source
|
|
||||||
|
|
||||||
show-targets:
|
show-targets:
|
||||||
@echo $(TARGETS)
|
@echo $(TARGETS)
|
||||||
|
@ -131,9 +131,8 @@ BR2_AT91_LINUXPATCH_SITE="http://maxim.org.za/AT91RM9200/2.6"
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp -nd"
|
BR2_WGET="wget --passive-ftp -nd"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -136,9 +136,8 @@ BR2_KERNEL_ARCH_PATCH_DIR="target/device/Atmel/arch-arm/kernel-patches-$(BR2_KER
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp -nd"
|
BR2_WGET="wget --passive-ftp -nd"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -131,9 +131,8 @@ BR2_AT91_LINUXPATCH_SITE="http://maxim.org.za/AT91RM9200/2.6"
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp -nd"
|
BR2_WGET="wget --passive-ftp -nd"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -142,9 +142,8 @@ BR2_KERNEL_ARCH_PATCH_DIR="target/device/Atmel/arch-arm/kernel-patches-$(BR2_KER
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp -nd"
|
BR2_WGET="wget --passive-ftp -nd"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -149,9 +149,8 @@ BR2_KERNEL_ARCH_PATCH_DIR="target/device/Atmel/arch-arm/kernel-patches-$(BR2_KER
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp -nd"
|
BR2_WGET="wget --passive-ftp -nd"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -131,9 +131,8 @@ BR2_AT91_LINUXPATCH_SITE="http://maxim.org.za/AT91RM9200/2.6"
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp -nd"
|
BR2_WGET="wget --passive-ftp -nd"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -150,9 +150,8 @@ BR2_KERNEL_ARCH_PATCH_DIR="target/device/Atmel/arch-arm/kernel-patches-$(BR2_KER
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp -nd"
|
BR2_WGET="wget --passive-ftp -nd"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -152,9 +152,8 @@ BR2_KERNEL_ARCH_PATCH_DIR="target/device/Atmel/arch-arm/kernel-patches-$(BR2_KER
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp"
|
BR2_WGET="wget --passive-ftp"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -134,9 +134,8 @@ BR2_AT91_LINUXPATCH_SITE="http://maxim.org.za/AT91RM9200/2.6"
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp -nd"
|
BR2_WGET="wget --passive-ftp -nd"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -153,9 +153,8 @@ BR2_KERNEL_ARCH_PATCH_DIR="target/device/Atmel/arch-arm/kernel-patches-$(BR2_KER
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp"
|
BR2_WGET="wget --passive-ftp"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -150,9 +150,8 @@ BR2_KERNEL_ARCH_PATCH_DIR="target/device/Atmel/arch-arm/kernel-patches-$(BR2_KER
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp"
|
BR2_WGET="wget --passive-ftp"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -133,9 +133,8 @@ BR2_AT91_LINUXPATCH_SITE="http://maxim.org.za/AT91RM9200/2.6"
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp -nd"
|
BR2_WGET="wget --passive-ftp -nd"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -152,9 +152,8 @@ BR2_KERNEL_ARCH_PATCH_DIR="target/device/Atmel/arch-arm/kernel-patches-$(BR2_KER
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp"
|
BR2_WGET="wget --passive-ftp"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -150,9 +150,8 @@ BR2_KERNEL_ARCH_PATCH_DIR="target/device/Atmel/arch-arm/kernel-patches-$(BR2_KER
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp -nd"
|
BR2_WGET="wget --passive-ftp -nd"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -131,9 +131,8 @@ BR2_AT91_LINUXPATCH_SITE="http://maxim.org.za/AT91RM9200/2.6"
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp -nd"
|
BR2_WGET="wget --passive-ftp -nd"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -150,9 +150,8 @@ BR2_KERNEL_ARCH_PATCH_DIR="target/device/Atmel/arch-arm/kernel-patches-$(BR2_KER
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp -nd"
|
BR2_WGET="wget --passive-ftp -nd"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -84,9 +84,8 @@ BR2_TARGET_AVR32_ATNGW100_BASE=y
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp --retry-connrefused --waitretry=10"
|
BR2_WGET="wget --passive-ftp --retry-connrefused --waitretry=10"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="zcat"
|
BR2_ZCAT="zcat"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -69,11 +69,10 @@ BR2_TARGET_AVR32_ATNGW100=y
|
|||||||
# Commands
|
# Commands
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp --retry-connrefused --waitretry=10"
|
BR2_WGET="wget --passive-ftp --retry-connrefused --waitretry=10"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
|
||||||
BR2_BZR_CO="bzr co"
|
BR2_BZR_CO="bzr co"
|
||||||
BR2_BZR_UP="bzr up"
|
BR2_BZR_UP="bzr up"
|
||||||
BR2_GIT="git clone"
|
BR2_GIT="git"
|
||||||
BR2_ZCAT="zcat"
|
BR2_ZCAT="zcat"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -82,9 +82,8 @@ BR2_KERNEL_ARCH_PATCH_DIR="target/device/Atmel/arch-avr32/kernel-patches-$(BR2_K
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp --retry-connrefused --waitretry=10"
|
BR2_WGET="wget --passive-ftp --retry-connrefused --waitretry=10"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="zcat"
|
BR2_ZCAT="zcat"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -83,9 +83,8 @@ BR2_KERNEL_ARCH_PATCH_DIR="target/device/Atmel/arch-avr32/kernel-patches-$(BR2_K
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp --retry-connrefused --waitretry=10"
|
BR2_WGET="wget --passive-ftp --retry-connrefused --waitretry=10"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="zcat"
|
BR2_ZCAT="zcat"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -85,9 +85,8 @@ BR2_TARGET_I686=y
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp"
|
BR2_WGET="wget --passive-ftp"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -85,9 +85,8 @@ BR2_TARGET_I686=y
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp"
|
BR2_WGET="wget --passive-ftp"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -81,9 +81,8 @@ BR2_BOARD_PATH="target/device/ARMLTD/$(BR2_BOARD_NAME)"
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp -nd"
|
BR2_WGET="wget --passive-ftp -nd"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -81,9 +81,8 @@ BR2_BOARD_PATH="target/device/ARMLTD/$(BR2_BOARD_NAME)"
|
|||||||
# Build options
|
# Build options
|
||||||
#
|
#
|
||||||
BR2_WGET="wget --passive-ftp -nd"
|
BR2_WGET="wget --passive-ftp -nd"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -92,9 +92,8 @@ BR2_TARGET_ARM=y
|
|||||||
#
|
#
|
||||||
BR2_PRIMARY_SITE=""
|
BR2_PRIMARY_SITE=""
|
||||||
BR2_WGET="wget --passive-ftp -nd"
|
BR2_WGET="wget --passive-ftp -nd"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="gzip -d -c"
|
BR2_ZCAT="gzip -d -c"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -63,9 +63,8 @@ BR2_TARGET_VALKA_V100SC2=y
|
|||||||
#
|
#
|
||||||
BR2_PRIMARY_SITE=""
|
BR2_PRIMARY_SITE=""
|
||||||
BR2_WGET="wget --passive-ftp --retry-connrefused --waitretry=10"
|
BR2_WGET="wget --passive-ftp --retry-connrefused --waitretry=10"
|
||||||
BR2_SVN_CO="svn co"
|
BR2_SVN="svn"
|
||||||
BR2_SVN_UP="svn up"
|
BR2_GIT="git"
|
||||||
BR2_GIT="git clone"
|
|
||||||
BR2_ZCAT="zcat"
|
BR2_ZCAT="zcat"
|
||||||
BR2_BZCAT="bzcat"
|
BR2_BZCAT="bzcat"
|
||||||
BR2_TAR_OPTIONS=""
|
BR2_TAR_OPTIONS=""
|
||||||
|
@ -68,6 +68,92 @@ MESSAGE = echo "$(TERM_BOLD)>>> $($(PKG)_NAME) $($(PKG)_VERSION) $(1)$(TERM_RESE
|
|||||||
TERM_BOLD := $(shell tput smso)
|
TERM_BOLD := $(shell tput smso)
|
||||||
TERM_RESET := $(shell tput rmso)
|
TERM_RESET := $(shell tput rmso)
|
||||||
|
|
||||||
|
# Download method commands
|
||||||
|
WGET:=$(call qstrip,$(BR2_WGET)) $(QUIET)
|
||||||
|
SVN:=$(call qstrip,$(BR2_SVN)) $(QUIET)
|
||||||
|
BZR:=$(call qstrip,$(BR2_BZR)) $(QUIET)
|
||||||
|
GIT:=$(call qstrip,$(BR2_GIT)) $(QUIET)
|
||||||
|
|
||||||
|
# Default spider mode is 'DOWNLOAD'. Other possible values are 'SOURCE_CHECK'
|
||||||
|
# used by the _source-check target and 'SHOW_EXTERNAL_DEPS', used by the
|
||||||
|
# external-deps target.
|
||||||
|
DL_MODE=DOWNLOAD
|
||||||
|
|
||||||
|
DL_DIR=$(call qstrip,$(BR2_DL_DIR))
|
||||||
|
ifeq ($(DL_DIR),)
|
||||||
|
DL_DIR:=$(TOPDIR)/dl
|
||||||
|
endif
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# The DOWNLOAD_{GIT,SVN} helpers are in charge of getting a working copy of
|
||||||
|
# the source repository for their corresponding SCM, checking out the requested
|
||||||
|
# version / commit / tag, and create an archive out of it. DOWNLOAD_WGET is the
|
||||||
|
# normal wget-based download mechanism.
|
||||||
|
#
|
||||||
|
# The SOURCE_CHECK_{GIT,SVN,WGET} helpers are in charge of simply checking that
|
||||||
|
# the source is available for download. This can be used to make sure one will
|
||||||
|
# be able to get all the sources needed for one's build configuration.
|
||||||
|
#
|
||||||
|
# The SHOW_EXTERNAL_DEPS_{GIT,SVN,WGET} helpers simply output to the console
|
||||||
|
# the names of the files that will be downloaded, or path and revision of the
|
||||||
|
# source repositories, producing a list of all the "external dependencies" of
|
||||||
|
# a given build configuration.
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
define DOWNLOAD_GIT
|
||||||
|
test -e $(DL_DIR)/$($(PKG)_SOURCE) || \
|
||||||
|
(pushd $(DL_DIR) > /dev/null && \
|
||||||
|
$(GIT) clone $($(PKG)_SITE) $($(PKG)_BASE_NAME) && \
|
||||||
|
pushd $($(PKG)_BASE_NAME) > /dev/null && \
|
||||||
|
$(GIT) archive --format=tar --prefix=$($(PKG)_BASE_NAME)/ $($(PKG)_DL_VERSION) | \
|
||||||
|
gzip -c > $(DL_DIR)/$($(PKG)_SOURCE) && \
|
||||||
|
popd > /dev/null && \
|
||||||
|
rm -rf $($(PKG)_DL_DIR) && \
|
||||||
|
popd > /dev/null)
|
||||||
|
endef
|
||||||
|
|
||||||
|
# TODO: improve to check that the given PKG_DL_VERSION exists on the remote
|
||||||
|
# repository
|
||||||
|
define SOURCE_CHECK_GIT
|
||||||
|
$(GIT) ls-remote --heads $($(PKG)_SITE) > /dev/null
|
||||||
|
endef
|
||||||
|
|
||||||
|
define SHOW_EXTERNAL_DEPS_GIT
|
||||||
|
echo "$($(PKG)_SITE) [git: $($(PKG)_DL_VERSION)]"
|
||||||
|
endef
|
||||||
|
|
||||||
|
|
||||||
|
define DOWNLOAD_SVN
|
||||||
|
test -e $(DL_DIR)/$($(PKG)_SOURCE) || \
|
||||||
|
(pushd $(DL_DIR) > /dev/null && \
|
||||||
|
$(SVN) export -r $($(PKG)_DL_VERSION) $($(PKG)_SITE) $($(PKG)_DL_DIR) && \
|
||||||
|
$(TAR) czf $($(PKG)_SOURCE) $($(PKG)_BASE_NAME)/ && \
|
||||||
|
rm -rf $($(PKG)_DL_DIR) && \
|
||||||
|
popd > /dev/null)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define SOURCE_CHECK_SVN
|
||||||
|
$(SVN) ls $($(PKG)_SITE) > /dev/null
|
||||||
|
endef
|
||||||
|
|
||||||
|
define SHOW_EXTERNAL_DEPS_SVN
|
||||||
|
echo "$($(PKG)_SITE) [svn: $($(PKG)_DL_VERSION)]"
|
||||||
|
endef
|
||||||
|
|
||||||
|
|
||||||
|
define DOWNLOAD_WGET
|
||||||
|
test -e $(DL_DIR)/$(2) || \
|
||||||
|
$(WGET) -P $(DL_DIR) $(call qstrip,$(1))/$(2)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define SOURCE_CHECK_WGET
|
||||||
|
$(WGET) --spider $(call qstrip,$(1))/$(2)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define SHOW_EXTERNAL_DEPS_WGET
|
||||||
|
echo $(2)
|
||||||
|
endef
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# DOWNLOAD -- Download helper. Will try to download source from:
|
# DOWNLOAD -- Download helper. Will try to download source from:
|
||||||
# 1) BR2_PRIMARY_SITE if enabled
|
# 1) BR2_PRIMARY_SITE if enabled
|
||||||
@ -81,16 +167,22 @@ TERM_RESET := $(shell tput rmso)
|
|||||||
# $(call DOWNLOAD,$(FOO_SITE),$(FOO_SOURCE))
|
# $(call DOWNLOAD,$(FOO_SITE),$(FOO_SOURCE))
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
# support make source-check/external-deps
|
|
||||||
ifneq ($(SPIDER),)
|
|
||||||
DOWNLOAD=$(WGET) -P $(DL_DIR) $(1)/$(2)
|
|
||||||
else
|
|
||||||
define DOWNLOAD
|
define DOWNLOAD
|
||||||
$(Q)test -e $(DL_DIR)/$(2) || \
|
$(Q)if test -n "$(call qstrip,$(BR2_PRIMARY_SITE))" ; then \
|
||||||
for site in $(call qstrip,$(BR2_PRIMARY_SITE)) $(1) $(call qstrip,$(BR2_BACKUP_SITE)); \
|
$(call $(DL_MODE)_WGET,$(BR2_PRIMARY_SITE),$(2)) && exit ; \
|
||||||
do $(WGET) -P $(DL_DIR) $$site/$(2) && exit; done
|
fi ; \
|
||||||
|
if test -n "$(1)" ; then \
|
||||||
|
case "$($(PKG)_SITE_METHOD)" in \
|
||||||
|
git) $($(DL_MODE)_GIT) && exit ;; \
|
||||||
|
svn) $($(DL_MODE)_SVN) && exit ;; \
|
||||||
|
*) $(call $(DL_MODE)_WGET,$(1),$(2)) && exit ;; \
|
||||||
|
esac ; \
|
||||||
|
fi ; \
|
||||||
|
if test -n "$(call qstrip,$(BR2_BACKUP_SITE))" ; then \
|
||||||
|
$(call $(DL_MODE)_WGET,$(BR2_BACKUP_SITE),$(2)) && exit ; \
|
||||||
|
fi ; \
|
||||||
|
exit 1
|
||||||
endef
|
endef
|
||||||
endif
|
|
||||||
|
|
||||||
# Utility programs used to build packages
|
# Utility programs used to build packages
|
||||||
TAR ?= tar
|
TAR ?= tar
|
||||||
@ -117,8 +209,7 @@ endef
|
|||||||
|
|
||||||
# Retrieve the archive
|
# Retrieve the archive
|
||||||
$(BUILD_DIR)/%/.stamp_downloaded:
|
$(BUILD_DIR)/%/.stamp_downloaded:
|
||||||
# support make source-check/external-deps
|
ifeq ($(DL_MODE),DOWNLOAD)
|
||||||
ifeq ($(SPIDER),)
|
|
||||||
# Only show the download message if it isn't already downloaded
|
# Only show the download message if it isn't already downloaded
|
||||||
$(Q)(test -e $(DL_DIR)/$($(PKG)_SOURCE) && \
|
$(Q)(test -e $(DL_DIR)/$($(PKG)_SOURCE) && \
|
||||||
(test -z $($(PKG)_PATCH) || test -e $(DL_DIR)$($(PKG)_PATCH))) || \
|
(test -z $($(PKG)_PATCH) || test -e $(DL_DIR)$($(PKG)_PATCH))) || \
|
||||||
@ -126,7 +217,7 @@ ifeq ($(SPIDER),)
|
|||||||
endif
|
endif
|
||||||
$(call DOWNLOAD,$($(PKG)_SITE),$($(PKG)_SOURCE))
|
$(call DOWNLOAD,$($(PKG)_SITE),$($(PKG)_SOURCE))
|
||||||
$(if $($(PKG)_PATCH),$(call DOWNLOAD,$($(PKG)_SITE),$($(PKG)_PATCH)))
|
$(if $($(PKG)_PATCH),$(call DOWNLOAD,$($(PKG)_SITE),$($(PKG)_PATCH)))
|
||||||
ifeq ($(SPIDER),)
|
ifeq ($(DL_MODE),DOWNLOAD)
|
||||||
$(Q)mkdir -p $(@D)
|
$(Q)mkdir -p $(@D)
|
||||||
$(Q)touch $@
|
$(Q)touch $@
|
||||||
endif
|
endif
|
||||||
@ -254,13 +345,23 @@ ifndef $(2)_VERSION
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
$(2)_DIR = $$(BUILD_DIR)/$(1)-$$($(2)_VERSION)
|
# Keep the package version that may contain forward slashes in the _DL_VERSION
|
||||||
|
# variable, then replace all forward slashes ('/') by underscores ('_') to
|
||||||
|
# sanitize the package version that is used in paths, directory and file names.
|
||||||
|
# Forward slashes may appear in the package's version when pointing to a
|
||||||
|
# version control system branch or tag, for example remotes/origin/1_10_stable.
|
||||||
|
$(2)_DL_VERSION = $($(2)_VERSION)
|
||||||
|
$(2)_VERSION = $(subst /,_,$($(2)_VERSION))
|
||||||
|
|
||||||
|
$(2)_BASE_NAME = $(1)-$$($(2)_VERSION)
|
||||||
|
$(2)_DL_DIR = $$(DL_DIR)/$$($(2)_BASE_NAME)
|
||||||
|
$(2)_DIR = $$(BUILD_DIR)/$$($(2)_BASE_NAME)
|
||||||
|
|
||||||
ifndef $(2)_SOURCE
|
ifndef $(2)_SOURCE
|
||||||
ifdef $(3)_SOURCE
|
ifdef $(3)_SOURCE
|
||||||
$(2)_SOURCE = $($(3)_SOURCE)
|
$(2)_SOURCE = $($(3)_SOURCE)
|
||||||
else
|
else
|
||||||
$(2)_SOURCE ?= $(1)-$$($(2)_VERSION).tar.gz
|
$(2)_SOURCE ?= $$($(2)_BASE_NAME).tar.gz
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@ -279,6 +380,15 @@ ifndef $(2)_SITE
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifndef $(2)_SITE_METHOD
|
||||||
|
ifdef $(3)_SITE_METHOD
|
||||||
|
$(2)_SITE_METHOD = $($(3)_SITE_METHOD)
|
||||||
|
else
|
||||||
|
# Try automatic detection using the scheme part of the URI
|
||||||
|
$(2)_SITE_METHOD = $(firstword $(subst ://, ,$(call qstrip,$($(2)_SITE))))
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
$(2)_DEPENDENCIES ?=
|
$(2)_DEPENDENCIES ?=
|
||||||
$(2)_INSTALL_STAGING ?= NO
|
$(2)_INSTALL_STAGING ?= NO
|
||||||
$(2)_INSTALL_TARGET ?= YES
|
$(2)_INSTALL_TARGET ?= YES
|
||||||
@ -292,7 +402,7 @@ $(2)_TARGET_BUILD = $$($(2)_DIR)/.stamp_built
|
|||||||
$(2)_TARGET_CONFIGURE = $$($(2)_DIR)/.stamp_configured
|
$(2)_TARGET_CONFIGURE = $$($(2)_DIR)/.stamp_configured
|
||||||
$(2)_TARGET_PATCH = $$($(2)_DIR)/.stamp_patched
|
$(2)_TARGET_PATCH = $$($(2)_DIR)/.stamp_patched
|
||||||
$(2)_TARGET_EXTRACT = $$($(2)_DIR)/.stamp_extracted
|
$(2)_TARGET_EXTRACT = $$($(2)_DIR)/.stamp_extracted
|
||||||
$(2)_TARGET_SOURCE ?= $$($(2)_DIR)/.stamp_downloaded
|
$(2)_TARGET_SOURCE = $$($(2)_DIR)/.stamp_downloaded
|
||||||
$(2)_TARGET_UNINSTALL = $$($(2)_DIR)/.stamp_uninstalled
|
$(2)_TARGET_UNINSTALL = $$($(2)_DIR)/.stamp_uninstalled
|
||||||
$(2)_TARGET_CLEAN = $$($(2)_DIR)/.stamp_cleaned
|
$(2)_TARGET_CLEAN = $$($(2)_DIR)/.stamp_cleaned
|
||||||
$(2)_TARGET_DIRCLEAN = $$($(2)_DIR)/.stamp_dircleaned
|
$(2)_TARGET_DIRCLEAN = $$($(2)_DIR)/.stamp_dircleaned
|
||||||
|
@ -6,20 +6,11 @@
|
|||||||
|
|
||||||
LIBSVGTINY_SITE = svn://svn.netsurf-browser.org/trunk/libsvgtiny
|
LIBSVGTINY_SITE = svn://svn.netsurf-browser.org/trunk/libsvgtiny
|
||||||
LIBSVGTINY_VERSION = 9800
|
LIBSVGTINY_VERSION = 9800
|
||||||
LIBSVGTINY_SVNDIR = libsvgtiny-svn-r$(LIBSVGTINY_VERSION)
|
|
||||||
LIBSVGTINY_SOURCE = $(LIBSVGTINY_SVNDIR).tar.bz2
|
|
||||||
LIBSVGTINY_INSTALL_STAGING = YES
|
LIBSVGTINY_INSTALL_STAGING = YES
|
||||||
LIBSVGTINY_INSTALL_TARGET = YES
|
LIBSVGTINY_INSTALL_TARGET = YES
|
||||||
LIBSVGTINY_DEPENDENCIES = libxml2 host-gperf host-pkg-config
|
LIBSVGTINY_DEPENDENCIES = libxml2 host-gperf host-pkg-config
|
||||||
|
|
||||||
$(DL_DIR)/$(LIBSVGTINY_SOURCE):
|
|
||||||
$(SVN_CO) -r $(LIBSVGTINY_VERSION) $(LIBSVGTINY_SITE) $(BUILD_DIR)/$(LIBSVGTINY_SVNDIR)
|
|
||||||
tar -cv -C $(BUILD_DIR) $(LIBSVGTINY_SVNDIR) | bzip2 - -c > $@
|
|
||||||
rm -rf $(BUILD_DIR)/$(LIBSVGTINY_SVNDIR)
|
|
||||||
|
|
||||||
# use custom download step
|
|
||||||
LIBSVGTINY_TARGET_SOURCE := $(DL_DIR)/$(LIBSVGTINY_SOURCE)
|
|
||||||
|
|
||||||
define LIBSVGTINY_BUILD_CMDS
|
define LIBSVGTINY_BUILD_CMDS
|
||||||
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) PREFIX=/usr
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) PREFIX=/usr
|
||||||
endef
|
endef
|
||||||
|
@ -21,7 +21,7 @@ MPFR_PATCH_SOURCE:=$(DL_DIR)/$(MPFR_PATCH_FILE)
|
|||||||
|
|
||||||
$(MPFR_PATCH_SOURCE):
|
$(MPFR_PATCH_SOURCE):
|
||||||
$(call DOWNLOAD,$(MPFR_SITE),$(MPFR_PATCH))
|
$(call DOWNLOAD,$(MPFR_SITE),$(MPFR_PATCH))
|
||||||
ifeq ($(SPIDER),) # this breaks source-check/external-deps
|
ifeq ($(DL_MODE),DOWNLOAD)
|
||||||
mv $(DL_DIR)/$(MPFR_PATCH) $@
|
mv $(DL_DIR)/$(MPFR_PATCH) $@
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
@ -5,19 +5,11 @@
|
|||||||
############################################################
|
############################################################
|
||||||
|
|
||||||
TREMOR_SITE:=http://svn.xiph.org/trunk/Tremor/
|
TREMOR_SITE:=http://svn.xiph.org/trunk/Tremor/
|
||||||
|
TREMOR_SITE_METHOD:=svn
|
||||||
TREMOR_VERSION:=16259
|
TREMOR_VERSION:=16259
|
||||||
TREMOR_SVNDIR = Tremor-svn-r$(TREMOR_VERSION)
|
|
||||||
TREMOR_SOURCE:= $(TREMOR_SVNDIR).tar.bz2
|
|
||||||
TREMOR_AUTORECONF = YES
|
TREMOR_AUTORECONF = YES
|
||||||
TREMOR_INSTALL_STAGING = YES
|
TREMOR_INSTALL_STAGING = YES
|
||||||
TREMOR_INSTALL_TARGET = YES
|
TREMOR_INSTALL_TARGET = YES
|
||||||
|
|
||||||
$(DL_DIR)/$(TREMOR_SOURCE):
|
|
||||||
$(SVN_CO) -r $(TREMOR_VERSION) $(TREMOR_SITE) $(BUILD_DIR)/$(TREMOR_SVNDIR)
|
|
||||||
tar -cv -C $(BUILD_DIR) $(TREMOR_SVNDIR) | bzip2 - -c > $@
|
|
||||||
rm -rf $(BUILD_DIR)/$(TREMOR_SVNDIR)
|
|
||||||
|
|
||||||
# use custom download step
|
|
||||||
TREMOR_TARGET_SOURCE := $(DL_DIR)/$(TREMOR_SOURCE)
|
|
||||||
|
|
||||||
$(eval $(call AUTOTARGETS,package/multimedia,tremor))
|
$(eval $(call AUTOTARGETS,package/multimedia,tremor))
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# replacement for wget (see BR2_WGET) which simply shows the file name to be
|
|
||||||
# downloaded. Used by the external-deps make target.
|
|
||||||
|
|
||||||
exec basename ${!#}
|
|
Loading…
x
Reference in New Issue
Block a user