svn commit: r500929 - head/lang/php73

Torsten Zuehlsdorff tz at FreeBSD.org
Mon May 6 20:27:19 UTC 2019


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 at 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
 


More information about the svn-ports-all mailing list