Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Oct 2020 13:51:16 +0000 (UTC)
From:      "Sergey A. Osokin" <osa@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r553107 - in head/www: unit-perl unit-php unit-python unit-ruby
Message-ID:  <202010231351.09NDpGGs002583@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}



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