Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 May 2019 20:27:18 +0000 (UTC)
From:      Torsten Zuehlsdorff <tz@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r500929 - head/lang/php73
Message-ID:  <201905062027.x46KRIq9041858@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tz
Date: Mon May  6 20:27:18 2019
New Revision: 500929
URL: https://svnweb.freebsd.org/changeset/ports/500929

Log:
  lang/php73: convert CPPFLAGS from /usr/local to ${LOCALBASE}
  
  As mat point out too often: if you write /usr/local you should write ${LOCALBASE}
  
  PR:		237722
  Reported by:	mikael.urankar@gmail.com

Modified:
  head/lang/php73/Makefile

Modified: head/lang/php73/Makefile
==============================================================================
--- head/lang/php73/Makefile	Mon May  6 20:19:01 2019	(r500928)
+++ head/lang/php73/Makefile	Mon May  6 20:27:18 2019	(r500929)
@@ -2,7 +2,7 @@
 
 PORTNAME=	php73
 DISTVERSION=	7.3.4
-PORTREVISION?=	3
+PORTREVISION?=	4
 CATEGORIES?=	lang devel www
 MASTER_SITES=	PHP/distributions
 DISTNAME=	php-${DISTVERSION}
@@ -29,7 +29,7 @@ CONFIGURE_ARGS+=--with-layout=GNU \
 		--with-pcre-regex=${LOCALBASE} \
 		--with-password-argon2=${LOCALBASE} \
 		--program-prefix=""
-CONFIGURE_ENV=	CPPFLAGS="-I/usr/local/include"
+CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include"
 USES+=		autoreconf:build
 USE_GNOME=	libxml2
 



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