svn commit: r345860 - vendor/Juniper/libxo

Phil Shafer phil at FreeBSD.org
Tue Sep 3 14:06:31 UTC 2019


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}"
 




More information about the svn-src-all mailing list