svn commit: r388665 - head/astro/gpxloggerd

John Marino marino at FreeBSD.org
Sat Jun 6 12:57:57 UTC 2015


Author: marino
Date: Sat Jun  6 12:57:56 2015
New Revision: 388665
URL: https://svnweb.freebsd.org/changeset/ports/388665

Log:
  astro/gpxloggerd: Unbreak on DragonFly
  
  The latest commits broke this port on DragonFly.  The port uses the
  base mk files rather than a standalone makefile, and will not build
  without warnings appearing:
  
    gpxloggerd.c:185:16: error: variable 'pt' set but not used
                         [-Werror=unused-but-set-variable]
  
  To ensure -Werror flag is not passed to the build, set NO_WERROR for
  the makefile.
  
  Approved by:	blanket (-Werror, restore DF)

Modified:
  head/astro/gpxloggerd/Makefile

Modified: head/astro/gpxloggerd/Makefile
==============================================================================
--- head/astro/gpxloggerd/Makefile	Sat Jun  6 12:12:13 2015	(r388664)
+++ head/astro/gpxloggerd/Makefile	Sat Jun  6 12:57:56 2015	(r388665)
@@ -18,6 +18,7 @@ PLIST_FILES=	sbin/${PORTNAME} \
 
 LDFLAGS+=	-lm
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
+MAKE_ARGS=	NO_WERROR=yes
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin/


More information about the svn-ports-all mailing list