diff options
Diffstat (limited to 'source/xap/mozilla-firefox')
3 files changed, 6 insertions, 3 deletions
diff --git a/source/xap/mozilla-firefox/build-deps/nodejs/nodejs.build b/source/xap/mozilla-firefox/build-deps/nodejs/nodejs.build index d0813df0e..aa09beaba 100755 --- a/source/xap/mozilla-firefox/build-deps/nodejs/nodejs.build +++ b/source/xap/mozilla-firefox/build-deps/nodejs/nodejs.build @@ -81,6 +81,9 @@ if [ ! -z $LIBDIRSUFFIX ]; then sed -i "s|lib/|lib${LIBDIRSUFFIX}/|g" tools/install.py fi +# Use gcc as there have been linker failures with objects build with clang: +CC="gcc" \ +CXX="g++" \ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ diff --git a/source/xap/mozilla-firefox/build-deps/nodejs/nodejs.url b/source/xap/mozilla-firefox/build-deps/nodejs/nodejs.url index 88bd888a5..75f7f4d38 100644 --- a/source/xap/mozilla-firefox/build-deps/nodejs/nodejs.url +++ b/source/xap/mozilla-firefox/build-deps/nodejs/nodejs.url @@ -1,2 +1,2 @@ -https://nodejs.org/dist/latest-v14.x/node-v14.17.1.tar.xz +https://nodejs.org/dist/v10.16.0/node-v10.16.0.tar.gz #https://github.com/nodejs/node diff --git a/source/xap/mozilla-firefox/mozilla-firefox.SlackBuild b/source/xap/mozilla-firefox/mozilla-firefox.SlackBuild index d81bea33e..4b558e783 100755 --- a/source/xap/mozilla-firefox/mozilla-firefox.SlackBuild +++ b/source/xap/mozilla-firefox/mozilla-firefox.SlackBuild @@ -333,8 +333,8 @@ DESTDIR=$PKG ./mach install || exit 1 # Strip binaries: find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -# Clean up the build time dependencies: -rm -rf $TMP/mozilla-firefox-build-deps +## Clean up the build time dependencies: +#rm -rf $TMP/mozilla-firefox-build-deps # We don't need these (just symlinks anyway): rm -rf $PKG/usr/lib${LIBDIRSUFFIX}/firefox-devel-$RELEASEVER |