diff options
author | Mark Ferrell <major@homeonderanged.org> | 2014-10-21 17:30:35 -0700 |
---|---|---|
committer | Mark Ferrell <major@homeonderanged.org> | 2014-10-21 17:30:35 -0700 |
commit | 0f391de4eb00ba785c69dff70795cb012414d2f0 (patch) | |
tree | 248cc17f020f177b62d85925b5ba290862fc9535 /libexec/build-make-compile | |
parent | 472d47007990eaa8cdcfa14d54c5f28985b6dbab (diff) |
Avoid stepping on SYSROOT as a builder variable
Diffstat (limited to 'libexec/build-make-compile')
-rwxr-xr-x | libexec/build-make-compile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/build-make-compile b/libexec/build-make-compile index 8a41e2a..7f8352b 100755 --- a/libexec/build-make-compile +++ b/libexec/build-make-compile @@ -21,8 +21,8 @@ build_compile() --mandir=/usr/share/man \ --docdir=/usr/share/doc \ --disable-dependency-tracking \ - --with-sysroot="${SYSROOT}" \ - --with-libtool-sysroot="${SYSROOT}" \ + --with-sysroot="${BUILDER_SYSDIR}" \ + --with-libtool-sysroot="${BUILDER_SYSDIR}" \ ${CONFIG_OPTS} fi |