mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-03-03 20:23:55 +00:00
prereq-build: add check for stdlib
One way to solve the python3 dependency check is to install python3-minimal instead of python3 on Debian based systems. Unfortunately, this results in a fairly unusable python. Added check for ntpath, which is how the issue originally presented itself. Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
be6f012551
commit
805be7e90e
@ -190,6 +190,10 @@ $(eval $(call TestHostCommand,python3-distutils, \
|
|||||||
Please install the Python3 distutils module, \
|
Please install the Python3 distutils module, \
|
||||||
$(STAGING_DIR_HOST)/bin/python3 -c 'from distutils import util'))
|
$(STAGING_DIR_HOST)/bin/python3 -c 'from distutils import util'))
|
||||||
|
|
||||||
|
$(eval $(call TestHostCommand,python3-stdlib, \
|
||||||
|
Please install the Python3 stdlib module, \
|
||||||
|
$(STAGING_DIR_HOST)/bin/python3 -c 'import ntpath'))
|
||||||
|
|
||||||
$(eval $(call SetupHostCommand,file,Please install the 'file' package, \
|
$(eval $(call SetupHostCommand,file,Please install the 'file' package, \
|
||||||
file --version 2>&1 | grep file))
|
file --version 2>&1 | grep file))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user