svn commit: r553107 - in head/www: unit-perl unit-php unit-python unit-ruby

Sergey A. Osokin osa at FreeBSD.org
Fri Oct 23 13:51:17 UTC 2020


Author: osa
Date: Fri Oct 23 13:51:16 2020
New Revision: 553107
URL: https://svnweb.freebsd.org/changeset/ports/553107

Log:
  Stylify: use CONFIGURE_CMD macro.
  Do not bump PORTREVISION.

Modified:
  head/www/unit-perl/Makefile
  head/www/unit-php/Makefile
  head/www/unit-python/Makefile
  head/www/unit-ruby/Makefile

Modified: head/www/unit-perl/Makefile
==============================================================================
--- head/www/unit-perl/Makefile	Fri Oct 23 13:38:54 2020	(r553106)
+++ head/www/unit-perl/Makefile	Fri Oct 23 13:51:16 2020	(r553107)
@@ -20,7 +20,7 @@ MASTERDIR=	${.CURDIR}/../unit
 
 post-configure:
 	cd ${CONFIGURE_WRKSRC} && \
-	./configure perl --module=${UNIT_MODNAME}
+	${CONFIGURE_CMD} perl --module=${UNIT_MODNAME}
 
 do-build:
 	cd ${CONFIGURE_WRKSRC} && ${MAKE} ${UNIT_MODNAME}

Modified: head/www/unit-php/Makefile
==============================================================================
--- head/www/unit-php/Makefile	Fri Oct 23 13:38:54 2020	(r553106)
+++ head/www/unit-php/Makefile	Fri Oct 23 13:51:16 2020	(r553107)
@@ -20,7 +20,7 @@ MASTERDIR=	${.CURDIR}/../unit
 
 post-configure:
 	cd ${CONFIGURE_WRKSRC} && \
-	./configure php --lib-path=${LOCALBASE}/lib \
+	${CONFIGURE_CMD} php --lib-path=${LOCALBASE}/lib \
 			--module=${UNIT_MODNAME}
 
 do-build:

Modified: head/www/unit-python/Makefile
==============================================================================
--- head/www/unit-python/Makefile	Fri Oct 23 13:38:54 2020	(r553106)
+++ head/www/unit-python/Makefile	Fri Oct 23 13:51:16 2020	(r553107)
@@ -21,7 +21,7 @@ MASTERDIR=	${.CURDIR}/../unit
 
 post-configure:
 	cd ${CONFIGURE_WRKSRC} && \
-	./configure python --module=${UNIT_MODNAME} \
+	${CONFIGURE_CMD} python --module=${UNIT_MODNAME} \
 			--config=${PYTHON_CMD}-config
 
 do-build:

Modified: head/www/unit-ruby/Makefile
==============================================================================
--- head/www/unit-ruby/Makefile	Fri Oct 23 13:38:54 2020	(r553106)
+++ head/www/unit-ruby/Makefile	Fri Oct 23 13:51:16 2020	(r553107)
@@ -21,7 +21,7 @@ MASTERDIR=	${.CURDIR}/../unit
 
 post-configure:
 	cd ${CONFIGURE_WRKSRC} && \
-	./configure ruby --module=${UNIT_MODNAME}
+	${CONFIGURE_CMD} ruby --module=${UNIT_MODNAME}
 
 do-build:
 	cd ${CONFIGURE_WRKSRC} && ${MAKE} ${UNIT_MODNAME}


More information about the svn-ports-all mailing list