svn commit: r395417 - head/astro/geographiclib

John Marino marino at FreeBSD.org
Thu Aug 27 12:22:46 UTC 2015


Author: marino
Date: Thu Aug 27 12:22:45 2015
New Revision: 395417
URL: https://svnweb.freebsd.org/changeset/ports/395417

Log:
  astro/geographiclib: Rectify assignment mistake
  
  I missed the unnecessary use of immediate evaluation assignment operators.
  Let's fix that once and for all.

Modified:
  head/astro/geographiclib/Makefile

Modified: head/astro/geographiclib/Makefile
==============================================================================
--- head/astro/geographiclib/Makefile	Thu Aug 27 12:18:54 2015	(r395416)
+++ head/astro/geographiclib/Makefile	Thu Aug 27 12:22:45 2015	(r395417)
@@ -41,10 +41,10 @@ PERL_USE=	PERL5=build
 PERL_USES=	perl5
 PERL_CONFIGURE_ENV_OFF=	ac_cv_prog_POD2MAN= ac_cv_prog_POD2HTML=
 
-GEOID_NAMES:=		egm84-30 egm84-15 egm96-15 egm96-5\
+GEOID_NAMES=		egm84-30 egm84-15 egm96-15 egm96-5\
 			egm2008-5 egm2008-2_5 egm2008-1
-GRAVITY_NAMES:=		egm84 egm96 egm2008 wgs84 grs80
-MAGNETIC_NAMES:=	wmm2010 wmm2015 igrf11 igrf12 emm2010 emm2015
+GRAVITY_NAMES=		egm84 egm96 egm2008 wgs84 grs80
+MAGNETIC_NAMES=		wmm2010 wmm2015 igrf11 igrf12 emm2010 emm2015
 
 .for n in ${GEOID_NAMES}
 GEOID_${n:C/[^0-9A-Z_a-z]/_/g:tu}_DESC=		Install ${n} geoid dataset


More information about the svn-ports-all mailing list