You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/libsndfile/files/libsndfile-1.0.25-make.patch

15 lines
444 B

Honour MAKE variable for systems with make != GNU make (eg fbsd)
Index: libsndfile-1.0.25/configure.ac
===================================================================
--- libsndfile-1.0.25.orig/configure.ac
+++ libsndfile-1.0.25/configure.ac
@@ -701,5 +701,5 @@ if test x$prefix != "x/usr" ; then
echo
fi
-(cd src && make genfiles)
-(cd tests && make genfiles)
+(cd src && ${MAKE-make} genfiles)
+(cd tests && ${MAKE-make} genfiles)