svn commit: r327085 - in head/editors/mined: . files

Thierry Thomas thierry at FreeBSD.org
Thu Sep 12 16:10:32 UTC 2013


Author: thierry
Date: Thu Sep 12 16:10:31 2013
New Revision: 327085
URL: http://svnweb.freebsd.org/changeset/ports/327085

Log:
  Fix usage of MAKE / GMAKE.
  
  Notified by:	danfe

Modified:
  head/editors/mined/Makefile
  head/editors/mined/files/patch-makefile

Modified: head/editors/mined/Makefile
==============================================================================
--- head/editors/mined/Makefile	Thu Sep 12 16:09:14 2013	(r327084)
+++ head/editors/mined/Makefile	Thu Sep 12 16:10:31 2013	(r327085)
@@ -21,7 +21,7 @@ PORTDOCS=	*
 USE_GMAKE=	yes
 MAKEFILE=	makefile
 REINPLACE_ARGS=	-i ""
-MAKE_ARGS=	GMAKE=${GMAKE} CC=${CC:T} OPT="${CFLAGS}"
+MAKE_ARGS=	GMAKE=${MAKE_CMD} CC=${CC:T} OPT="${CFLAGS}"
 INSTALL_TARGET=	localinstall
 MAKE_JOBS_UNSAFE=	yes
 

Modified: head/editors/mined/files/patch-makefile
==============================================================================
--- head/editors/mined/files/patch-makefile	Thu Sep 12 16:09:14 2013	(r327084)
+++ head/editors/mined/files/patch-makefile	Thu Sep 12 16:10:31 2013	(r327085)
@@ -5,7 +5,7 @@
  
  manual:
 -	cd man; make
-+	cd man; $(GMAKE)
++	cd man  && $(MAKE)
  
  VER=$(shell sed -e 's,^[^0-9]*,,' -e 's,[^0-9][^0-9]*,.,g' -e q VERSION )
  UNIVER=$(shell sed -e '/^\# Blocks-/ b ver' -e d -e ': ver' -e 's,^[^0-9]*\([0-9].*[0-9]\).*,\1,g' -e 's,\.0$$,,' src/Blocks.txt )


More information about the svn-ports-all mailing list