Date: Tue, 24 Dec 2013 21:50:59 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337391 - head/math/sdpara/files Message-ID: <201312242150.rBOLoxtd091050@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Tue Dec 24 21:50:59 2013 New Revision: 337391 URL: http://svnweb.freebsd.org/changeset/ports/337391 Log: math/sdpara: Unbreak on FreeBSD 10+ The breakage was caused by processing makefiles with bmake instead of the specified gmake. PR: ports/184619 Approved by: maintainer timeout Modified: head/math/sdpara/files/patch-Makefile Modified: head/math/sdpara/files/patch-Makefile ============================================================================== --- head/math/sdpara/files/patch-Makefile Tue Dec 24 21:43:27 2013 (r337390) +++ head/math/sdpara/files/patch-Makefile Tue Dec 24 21:50:59 2013 (r337391) @@ -1,5 +1,5 @@ ---- Makefile.orig 2009-01-09 11:26:29.000000000 +0900 -+++ Makefile 2009-02-17 14:11:48.000000000 +0900 +--- Makefile.orig 2009-01-09 02:26:29.000000000 +0000 ++++ Makefile @@ -4,20 +4,20 @@ # you edit here along your environment ############################################################ @@ -35,3 +35,16 @@ # F77_FUNC DEF_F77_FUNC = -DF77_FUNC\(name,NAME\)=name\ \#\#\ _ +@@ -82,10 +82,10 @@ cleanall: clean mumps-clean + force: cleanall all + + mumps: +- cd mumps; make ++ cd mumps; $(MAKE) + + mumps-clean: +- cd mumps; make distclean ++ cd mumps; $(MAKE) distclean + + update_make_headers: + g++ -MM *.cpp > make.headers
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312242150.rBOLoxtd091050>