mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-04 17:07:43 +00:00
toolchain/crosstool-NG: add dependencies on host- tools
Depends on: - GNU awk --> host-gawk - GNU automake --> host-automake Remove dependency on 'cvs'. cvs is used to retrieve newlib, which is not supported under Buildroot. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
936be892dd
commit
ee355233bb
15
toolchain/toolchain-crosstool-ng/001-no-cvs.patch
Normal file
15
toolchain/toolchain-crosstool-ng/001-no-cvs.patch
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
Remove dependency on cvs.
|
||||||
|
|
||||||
|
cvs is used to retrieve newlib, which is not supported
|
||||||
|
under Buildroot, so cvs is not required.
|
||||||
|
|
||||||
|
--- crosstool-ng-1.8.0/configure.orig 2010-11-27 15:43:52.000000000 +0000
|
||||||
|
+++ crosstool-ng-1.8.0/configure 2010-11-27 15:44:10.000000000 +0000
|
||||||
|
@@ -359,7 +359,6 @@
|
||||||
|
err="'libtool' 1.5.26 or above was not found"
|
||||||
|
has_or_abort prog=stat
|
||||||
|
has_or_abort prog="aria2c curl wget"
|
||||||
|
-has_or_abort prog=cvs
|
||||||
|
has_or_abort prog=patch
|
||||||
|
has_or_abort prog=tar
|
||||||
|
has_or_abort prog=gzip
|
@ -267,8 +267,16 @@ $(CTNG_DIR)/.patched: $(CTNG_DIR)/.unpacked
|
|||||||
\*.patch.$(ARCH)
|
\*.patch.$(ARCH)
|
||||||
$(Q)touch $@
|
$(Q)touch $@
|
||||||
|
|
||||||
|
# Use order-only dependencies on host-* as they
|
||||||
|
# are virtual targets with no rules, and so are
|
||||||
|
# considered always remade. But we do not want
|
||||||
|
# to reconfigure and rebuild ct-ng every time
|
||||||
|
# we need to run it...
|
||||||
|
$(CTNG_DIR)/.configured: | host-gawk \
|
||||||
|
host-automake
|
||||||
|
|
||||||
$(CTNG_DIR)/.configured: $(CTNG_DIR)/.patched
|
$(CTNG_DIR)/.configured: $(CTNG_DIR)/.patched
|
||||||
$(Q)cd $(CTNG_DIR) && ./configure --local
|
$(Q)cd $(CTNG_DIR) && PATH=$(HOST_PATH) ./configure --local
|
||||||
$(Q)touch $@
|
$(Q)touch $@
|
||||||
|
|
||||||
$(CTNG_DIR)/ct-ng: $(CTNG_DIR)/.configured
|
$(CTNG_DIR)/ct-ng: $(CTNG_DIR)/.configured
|
||||||
|
Loading…
x
Reference in New Issue
Block a user