diff options
author | Mark Ferrell <major@homeonderanged.org> | 2014-06-27 19:24:02 -0700 |
---|---|---|
committer | Mark Ferrell <major@homeonderanged.org> | 2014-06-27 19:24:02 -0700 |
commit | 4579baec41e53f21185a0d45122aad66bc883642 (patch) | |
tree | 670c071f2e6bdab58563a0c9dbdbedf3cc167d36 /libexec/build-make-compile | |
parent | a756c1a56a2be3936d0c0fa4855e6e3581b34a8a (diff) |
Stop hardcoding the expected toolchain
Diffstat (limited to 'libexec/build-make-compile')
-rwxr-xr-x | libexec/build-make-compile | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libexec/build-make-compile b/libexec/build-make-compile index 4f56253..8ff954f 100755 --- a/libexec/build-make-compile +++ b/libexec/build-make-compile @@ -40,18 +40,11 @@ build_make_compile() # may potentially overwrite this data, in particular the toolchain data # is usually rewritten within the toolchain/buildtools rule. echo "compiling: ${1}" - eval "$(build-query --toolchain "${CHOST}")" mkenv "compile" PKG_LOGFILE="${L}/compile.log" build uninstall "${1}" >> "${PKG_LOGFILE}" - # pkgconfig can be a right pita... - PKG_CONFIG_LIBDIR="${SYSROOT}/usr/share/pkgconfig:${SYSROOT}/usr/lib/pkgconfig" - PKG_CONFIG_SYSROOT_DIR="${SYSROOT}" - export PKG_CONFIG_LIBDIR PKG_CONFIG_PATH - export PKG_CONFIG_SYSROOT_DIR - # Don't pass along the builder jobcontrol data to child processes unset MAKEFLAGS |