diff options
author | Paul Spooren <mail@aparcar.org> | 2021-09-23 15:30:32 -1000 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2022-07-06 01:17:52 +0200 |
commit | fd2f3136ca5134364af7bfaf574379c1dbda8344 (patch) | |
tree | c1eaf5c6e921f8469674453820945e432c26a62d /include | |
parent | 8b798dbb39856463878efb07ddef87ce2e522ceb (diff) | |
download | upstream-fd2f3136ca5134364af7bfaf574379c1dbda8344.tar.gz upstream-fd2f3136ca5134364af7bfaf574379c1dbda8344.tar.bz2 upstream-fd2f3136ca5134364af7bfaf574379c1dbda8344.zip |
build: do not require git/rsync for ImageBuilder
The ImageBuilder does not need git or rsync since it only glues files
together, packages are downloaded via wget and not rsync.
Signed-off-by: Paul Spooren <mail@aparcar.org>
[ solve conflict with additional git prereq test ]
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/prereq-build.mk | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/prereq-build.mk b/include/prereq-build.mk index 80d549af39..7428c21e16 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -53,6 +53,13 @@ $(eval $(call TestHostCommand,ncurses, \ Please install ncurses. (Missing libncurses.so or ncurses.h), \ echo 'int main(int argc, char **argv) { initscr(); return 0; }' | \ gcc -include ncurses.h -x c -o $(TMP_DIR)/a.out - -lncurses)) + +$(eval $(call SetupHostCommand,git,Please install Git (git-core) >= 1.7.12.2, \ + git --exec-path | xargs -I % -- grep -q -- --recursive %/git-submodule, \ + git submodule --help | grep -- --recursive)) + +$(eval $(call SetupHostCommand,rsync,Please install 'rsync', \ + rsync --version </dev/null)) endif # IB ifeq ($(HOST_OS),Linux) @@ -181,16 +188,9 @@ $(eval $(call TestHostCommand,python3-distutils, \ Please install the Python3 distutils module, \ $(STAGING_DIR_HOST)/bin/python3 -c 'import distutils')) -$(eval $(call SetupHostCommand,git,Please install Git (git-core) >= 1.7.12.2, \ - git --exec-path | xargs -I % -- grep -q -- --recursive %/git-submodule, \ - git submodule --help | grep -- --recursive)) - $(eval $(call SetupHostCommand,file,Please install the 'file' package, \ file --version 2>&1 | grep file)) -$(eval $(call SetupHostCommand,rsync,Please install 'rsync', \ - rsync --version </dev/null)) - $(eval $(call SetupHostCommand,which,Please install 'which', \ /usr/bin/which which, \ /bin/which which, \ |