svn commit: r399427 - head/comms/nmealib

John Marino marino at FreeBSD.org
Fri Oct 16 07:25:41 UTC 2015


Author: marino
Date: Fri Oct 16 07:25:39 2015
New Revision: 399427
URL: https://svnweb.freebsd.org/changeset/ports/399427

Log:
  comms/nmealib is not jobs safe
  
  nmealib reproducibly fails even with -j2.  The build tries to link
  libnmea before its is built.
  
  While here, vertically align a couple of standard definitions.

Modified:
  head/comms/nmealib/Makefile

Modified: head/comms/nmealib/Makefile
==============================================================================
--- head/comms/nmealib/Makefile	Fri Oct 16 07:13:03 2015	(r399426)
+++ head/comms/nmealib/Makefile	Fri Oct 16 07:25:39 2015	(r399427)
@@ -11,13 +11,15 @@ COMMENT=	Library for working with the NM
 
 LICENSE=	LGPL21
 
-WRKSRC=	${WRKDIR}/${PORTNAME}
+WRKSRC=		${WRKDIR}/${PORTNAME}
 
-USES=	gmake zip
+USES=		gmake zip
 
 INCLUDES=	config.h context.h generate.h generator.h gmath.h info.h nmea.h \
 		parse.h parser.h sentence.h time.h tok.h units.h
 
+MAKE_JOBS_UNSAFE=	yes
+
 do-install:
 	${INSTALL_DATA} ${WRKSRC}/lib/libnmea.a ${STAGEDIR}${PREFIX}/lib
 	@${MKDIR} ${STAGEDIR}${PREFIX}/include/nmea


More information about the svn-ports-all mailing list