diff options
author | marino <marino@FreeBSD.org> | 2015-06-06 20:57:56 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2015-06-06 20:57:56 +0800 |
commit | c282b7da77fcdba6ab69037202b8693dc34c447f (patch) | |
tree | c78970514ebe0a8ae1b0788895eb5293464da0fa /astro/gpxloggerd | |
parent | f41a5a0477e2679daba25b4619576d6f953c69eb (diff) | |
download | freebsd-ports-gnome-c282b7da77fcdba6ab69037202b8693dc34c447f.tar.gz freebsd-ports-gnome-c282b7da77fcdba6ab69037202b8693dc34c447f.tar.zst freebsd-ports-gnome-c282b7da77fcdba6ab69037202b8693dc34c447f.zip |
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)
Diffstat (limited to 'astro/gpxloggerd')
-rw-r--r-- | astro/gpxloggerd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/astro/gpxloggerd/Makefile b/astro/gpxloggerd/Makefile index f76549b4d22c..97a6fc53bba4 100644 --- a/astro/gpxloggerd/Makefile +++ b/astro/gpxloggerd/Makefile @@ -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/ |