Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Mar 2014 18:07:13 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r347528 - head/science/netcdf
Message-ID:  <201403081807.s28I7D5w066156@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tijl
Date: Sat Mar  8 18:07:13 2014
New Revision: 347528
URL: http://svnweb.freebsd.org/changeset/ports/347528
QAT: https://qat.redports.org/buildarchive/r347528/

Log:
  Add USES=gmake to fix installation on systems that use fmake by default.
  
  Some makefiles in this port list "configure" as a dependency of some files.
  Because "configure" gets modified by USES=libtool, this means make tries to
  regenerate them.  The commands for these files detect that nothing has
  changed however and they don't actually regenerate the files.  Both bmake
  and gmake leave it at that, but fmake reruns all targets that depend on
  these files anyway.  This fails because it requires tools that aren't
  available.
  
  Reported by:	antoine

Modified:
  head/science/netcdf/Makefile

Modified: head/science/netcdf/Makefile
==============================================================================
--- head/science/netcdf/Makefile	Sat Mar  8 17:36:32 2014	(r347527)
+++ head/science/netcdf/Makefile	Sat Mar  8 18:07:13 2014	(r347528)
@@ -19,7 +19,7 @@ PORTSCOUT=	limit:^3\.
 CONFIGURE_ARGS=	--enable-shared
 CPPFLAGS+=	-I${LOCALBASE}/include -fPIC -DPIC
 GNU_CONFIGURE=	yes
-USES=		libtool
+USES=		gmake libtool
 USE_LDCONFIG=	yes
 
 INFO=		netcdf netcdf-c netcdf-cxx netcdf-f77 netcdf-f90 \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201403081807.s28I7D5w066156>