Date: Tue, 03 Sep 2019 14:06:09 -0000 From: Phil Shafer <phil@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r345860 - vendor/Juniper/libxo Message-ID: <201904032230.x33MUKRn029430@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: phil Date: Wed Apr 3 22:30:20 2019 New Revision: 345860 URL: https://svnweb.freebsd.org/changeset/base/345860 Log: Add "MAKE=gmake" to "configure" invocations in libxo import script Modified: vendor/Juniper/libxo/import.sh Modified: vendor/Juniper/libxo/import.sh ============================================================================== --- vendor/Juniper/libxo/import.sh Wed Apr 3 21:55:39 2019 (r345859) +++ vendor/Juniper/libxo/import.sh Wed Apr 3 22:30:20 2019 (r345860) @@ -280,12 +280,12 @@ Cd $CWD/dist run "autoreconf" "autoreconf --install --force" Cd $CWD/dist/build -run "configure for testing" "../configure --prefix $CWD/dist/build/root" +run "configure for testing" "env MAKE=gmake ../configure --prefix $CWD/dist/build/root" run "build and test" \ "${GMAKE} clean && ${GMAKE} && ${GMAKE} install && ${GMAKE} test" # Freebsd lacks stock gettext, so don't build it -run "configure for real" "../configure --disable-gettext --prefix /usr" +run "configure for real" "env MAKE=gmake ../configure --disable-gettext --prefix /usr" run "build for real" \ "${GMAKE} clean && ${GMAKE}"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904032230.x33MUKRn029430>