From 323c1fd9b1bb61d019272034e81b7e10504f532f Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 17 Jun 2020 10:23:46 +0300 Subject: [PATCH] firefox: Use CC. Closes #198 --- extra/firefox-esr/build | 4 ++-- extra/firefox/build | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/extra/firefox-esr/build b/extra/firefox-esr/build index 18ba734d..5b8af333 100755 --- a/extra/firefox-esr/build +++ b/extra/firefox-esr/build @@ -36,8 +36,8 @@ cd build # Bypass 'ccache' as it's totally useless when building # Firefox and only slows things down. -export CC="${CC:-/usr/bin/gcc}" -export CXX="${CXX:-/usr/bin/g++}" +export CC="${CC:-/usr/bin/cc}" +export CXX="${CXX:-/usr/bin/c++}" export LDFLAGS="$LDFLAGS -Wl,-rpath=/usr/lib/firefox" export RUSTFLAGS="$RUSTFLAGS -Cdebuginfo=0" diff --git a/extra/firefox/build b/extra/firefox/build index 9a295de7..1733b431 100755 --- a/extra/firefox/build +++ b/extra/firefox/build @@ -35,8 +35,8 @@ cd build # Bypass 'ccache' as it's totally useless when building # Firefox and only slows things down. -export CC="${CC:-/usr/bin/gcc}" -export CXX="${CXX:-/usr/bin/g++}" +export CC="${CC:-/usr/bin/cc}" +export CXX="${CXX:-/usr/bin/c++}" export LDFLAGS="$LDFLAGS -Wl,-rpath=/usr/lib/firefox" export RUSTFLAGS="$RUSTFLAGS -Cdebuginfo=0"