Skip to content

Commit 2191bc2

Browse files
committed
Trim AC_INIT
1 parent 7d3123e commit 2191bc2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dnl Basic autoconf initialization, generation of config.nice.
88
dnl -------------------------------------------------------------------------
99

1010
AC_PREREQ([2.68])
11-
AC_INIT([PHP], [7.4.0-dev], [https://bugs.php.net], [php], [https://www.php.net])
11+
AC_INIT([PHP],[7.4.0-dev],[https://bugs.php.net],[php],[https://www.php.net])
1212
AC_CONFIG_SRCDIR([main/php_version.h])
1313
AC_CONFIG_AUX_DIR([build])
1414
AC_PRESERVE_HELP_ORDER

scripts/phpize.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
dnl This file becomes configure.ac for self-contained extensions.
22

33
AC_PREREQ([2.68])
4-
AC_INIT([PHP], [7.4.0-dev], [https://bugs.php.net], [php], [https://www.php.net])
4+
AC_INIT([PHP],[7.4.0-dev],[https://bugs.php.net],[php],[https://www.php.net])
55
AC_CONFIG_SRCDIR([config.m4])
66
AC_CONFIG_AUX_DIR([build])
77
AC_PRESERVE_HELP_ORDER

win32/build/confutils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ var PHP_VERSION_STRING = "7.3.0";
105105
function get_version_numbers()
106106
{
107107
var cin = file_get_contents("configure.ac");
108-
var regex = /AC_INIT\(\[PHP\], \[(\d+)\.(\d+)\.(\d+)([^\]]*)\],\ .+\)/g;
108+
var regex = /AC_INIT\(\[PHP\],\[(\d+)\.(\d+)\.(\d+)([^\]]*)\],.+\)/g;
109109

110110
if (cin.match(new RegExp(regex))) {
111111
PHP_VERSION = RegExp.$1;

0 commit comments

Comments
 (0)