Host system needs to be known even when looking for build tools.
git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2541 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
@@ -46,6 +46,7 @@ EOF
|
|||||||
# Start the configure program.
|
# Start the configure program.
|
||||||
# $1 = target
|
# $1 = target
|
||||||
build_config() {
|
build_config() {
|
||||||
|
set_system
|
||||||
prepare_build_system
|
prepare_build_system
|
||||||
config_requirements
|
config_requirements
|
||||||
prepare_host_system
|
prepare_host_system
|
||||||
|
|||||||
@@ -970,14 +970,17 @@ EOF
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
prepare_build_system() {
|
set_system() {
|
||||||
set_build_system
|
set_build_system
|
||||||
|
set_host_system
|
||||||
|
}
|
||||||
|
|
||||||
|
prepare_build_system() {
|
||||||
# Include information about programs we can detect for the build system.
|
# Include information about programs we can detect for the build system.
|
||||||
. build/unix/config_proginfo_build
|
. build/unix/config_proginfo_build
|
||||||
}
|
}
|
||||||
|
|
||||||
prepare_host_system() {
|
prepare_host_system() {
|
||||||
set_host_system
|
|
||||||
# Include information about programs we can detect for the host system.
|
# Include information about programs we can detect for the host system.
|
||||||
. build/unix/config_proginfo_host
|
. build/unix/config_proginfo_host
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user