diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2020-10-23 13:51:16 +0000 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2020-10-23 13:51:16 +0000 |
commit | 3cf0327df4569653a3fdfe84478a48d33ec7fc9d (patch) | |
tree | c3914bdaa84c965d6dd27dfefb3e6c2985d105da /www | |
parent | devel/llvm10: unbreak CLANG=off after r552611 (diff) |
Stylify: use CONFIGURE_CMD macro.
Do not bump PORTREVISION.
Notes
Notes:
svn path=/head/; revision=553107
Diffstat (limited to 'www')
-rw-r--r-- | www/unit-perl/Makefile | 2 | ||||
-rw-r--r-- | www/unit-php/Makefile | 2 | ||||
-rw-r--r-- | www/unit-python/Makefile | 2 | ||||
-rw-r--r-- | www/unit-ruby/Makefile | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/www/unit-perl/Makefile b/www/unit-perl/Makefile index 3b3e08f9b473..76ebe1ea04f5 100644 --- a/www/unit-perl/Makefile +++ b/www/unit-perl/Makefile @@ -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} diff --git a/www/unit-php/Makefile b/www/unit-php/Makefile index c96672e3d340..9537bb2c5c33 100644 --- a/www/unit-php/Makefile +++ b/www/unit-php/Makefile @@ -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: diff --git a/www/unit-python/Makefile b/www/unit-python/Makefile index d72215b981e7..430618685572 100644 --- a/www/unit-python/Makefile +++ b/www/unit-python/Makefile @@ -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: diff --git a/www/unit-ruby/Makefile b/www/unit-ruby/Makefile index 23228d2bfcf4..429ab4ac177e 100644 --- a/www/unit-ruby/Makefile +++ b/www/unit-ruby/Makefile @@ -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} |