diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-11-14 05:13:47 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-11-14 05:18:37 -0600 |
commit | 7c319154f85c9905842c2f0adb32d1ffda980ba7 (patch) | |
tree | 608f5e73345fe31b153aa936c24943d036ad5098 /configure.ac | |
parent | 5e026220bcc5947d33536a333192d1844b78253e (diff) |
stop sourcing config_host wholesale, use get_config_variables instead
Change-Id: I1390da403a2f0aab0f4e8323daa9f2fad4ba2550
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 55ed524fe848..1acf4b520df8 100644 --- a/configure.ac +++ b/configure.ac @@ -4077,7 +4077,6 @@ if test "$cross_compiling" = "yes"; then tar cf - \ config.guess \ config_host.mk.in \ - config_host.mk.source \ configure \ ooo.lst.in \ oowintool \ @@ -4134,7 +4133,8 @@ if test "$cross_compiling" = "yes"; then test -f ./config_host.mk 2>/dev/null || exit cp config_host.mk ../config_build.mk cp config.log ../config.Build.log - . ./config_host.mk.source + . ./bin/get_config_variables COM GUI GUIBASE OS CPU CPUNAME CC CXX DISABLE_PYTHON GXX_INCLUDE_PATH MACOSX_DEPLOYMENT_TARGET INPATH OUTPATH PYTHON SYSTEM_LIBXSLT OUTDIR SOLARINC SOLARLIB WORKDIR + for V in COM GUI GUIBASE OS CPU CPUNAME CC CXX DISABLE_PYTHON GXX_INCLUDE_PATH MACOSX_DEPLOYMENT_TARGET INPATH OUTPATH \ PYTHON SYSTEM_LIBXSLT; do VV='$'$V |