Skip to content

Commit a2bb626

Browse files
committed
Fix CS
1 parent 5fc7481 commit a2bb626

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

ext/dom/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ if test "$PHP_DOM" != "no"; then
4949
PHP_ADD_BUILD_DIR($ext_builddir/$LEXBOR_DIR/ns)
5050
PHP_ADD_BUILD_DIR($ext_builddir/$LEXBOR_DIR/tag)
5151
PHP_SUBST(DOM_SHARED_LIBADD)
52-
PHP_INSTALL_HEADERS([ext/dom/xml_common.h ext/dom/xpath_callbacks.h])
52+
PHP_INSTALL_HEADERS([ext/dom], [xml_common.h xpath_callbacks.h])
5353
PHP_ADD_EXTENSION_DEP(dom, libxml)
5454
])
5555
fi

ext/filter/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ if test "$PHP_FILTER" != "no"; then
88
PHP_NEW_EXTENSION(filter, filter.c sanitizing_filters.c logical_filters.c callback_filter.c, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
99
PHP_SUBST(FILTER_SHARED_LIBADD)
1010

11-
PHP_INSTALL_HEADERS([ext/filter/php_filter.h])
11+
PHP_INSTALL_HEADERS([ext/filter], [php_filter.h])
1212
PHP_ADD_EXTENSION_DEP(filter, pcre)
1313
fi

ext/gmp/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if test "$PHP_GMP" != "no"; then
2727
PHP_ADD_INCLUDE($PHP_GMP/include)
2828
fi
2929

30-
PHP_INSTALL_HEADERS([ext/gmp/php_gmp_int.h])
30+
PHP_INSTALL_HEADERS([ext/gmp], [php_gmp_int.h])
3131

3232
PHP_NEW_EXTENSION(gmp, gmp.c, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
3333
PHP_SUBST(GMP_SHARED_LIBADD)

ext/libxml/config0.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ if test "$PHP_LIBXML" != "no"; then
1212
PHP_SETUP_LIBXML(LIBXML_SHARED_LIBADD, [
1313
AC_DEFINE(HAVE_LIBXML,1,[ ])
1414
PHP_NEW_EXTENSION(libxml, [libxml.c mime_sniff.c], $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
15-
PHP_INSTALL_HEADERS([ext/libxml/php_libxml.h])
15+
PHP_INSTALL_HEADERS([ext/libxml], [php_libxml.h])
1616
])
1717
fi

ext/mysqli/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ if test "$PHP_MYSQLI" != "no"; then
6565
mysqli_exception.c mysqli_result_iterator.c"
6666
PHP_NEW_EXTENSION(mysqli, $mysqli_sources, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
6767
PHP_SUBST(MYSQLI_SHARED_LIBADD)
68-
PHP_INSTALL_HEADERS([ext/mysqli],[php_mysqli_structs.h mysqli_mysqlnd.h])
68+
PHP_INSTALL_HEADERS([ext/mysqli], [php_mysqli_structs.h mysqli_mysqlnd.h])
6969
PHP_ADD_EXTENSION_DEP(mysqli, mysqlnd)
7070
fi

ext/pdo/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if test "$PHP_PDO" != "no"; then
1111

1212
PHP_NEW_EXTENSION(pdo, pdo.c pdo_dbh.c pdo_stmt.c pdo_sql_parser.c pdo_sqlstate.c, $ext_shared)
1313
PHP_ADD_EXTENSION_DEP(pdo, spl, true)
14-
PHP_INSTALL_HEADERS(ext/pdo, [php_pdo.h php_pdo_driver.h php_pdo_error.h])
14+
PHP_INSTALL_HEADERS([ext/pdo], [php_pdo.h php_pdo_driver.h php_pdo_error.h])
1515

1616
dnl so we always include the known-good working hack.
1717
PHP_ADD_MAKEFILE_FRAGMENT

ext/session/config.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if test "$PHP_SESSION" != "no"; then
1818
PHP_ADD_EXTENSION_DEP(session, hash, true)
1919
PHP_ADD_EXTENSION_DEP(session, spl)
2020
PHP_SUBST(SESSION_SHARED_LIBADD)
21-
PHP_INSTALL_HEADERS(ext/session, [php_session.h mod_files.h mod_user.h])
21+
PHP_INSTALL_HEADERS([ext/session], [php_session.h mod_files.h mod_user.h])
2222
AC_DEFINE(HAVE_PHP_SESSION,1,[ ])
2323
fi
2424

@@ -38,6 +38,6 @@ if test "$PHP_MM" != "no"; then
3838

3939
PHP_ADD_LIBRARY_WITH_PATH(mm, $MM_DIR/$PHP_LIBDIR, SESSION_SHARED_LIBADD)
4040
PHP_ADD_INCLUDE($MM_DIR/include)
41-
PHP_INSTALL_HEADERS([ext/session/mod_mm.h])
41+
PHP_INSTALL_HEADERS([ext/session], [mod_mm.h])
4242
AC_DEFINE(HAVE_LIBMM, 1, [Whether you have libmm])
4343
fi

ext/simplexml/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if test "$PHP_SIMPLEXML" != "no"; then
1313
PHP_SETUP_LIBXML(SIMPLEXML_SHARED_LIBADD, [
1414
AC_DEFINE(HAVE_SIMPLEXML,1,[ ])
1515
PHP_NEW_EXTENSION(simplexml, simplexml.c, $ext_shared)
16-
PHP_INSTALL_HEADERS([ext/simplexml/php_simplexml.h ext/simplexml/php_simplexml_exports.h])
16+
PHP_INSTALL_HEADERS([ext/simplexml], [php_simplexml.h php_simplexml_exports.h])
1717
PHP_SUBST(SIMPLEXML_SHARED_LIBADD)
1818
])
1919
PHP_ADD_EXTENSION_DEP(simplexml, libxml)

ext/sockets/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,5 +103,5 @@ if test "$PHP_SOCKETS" != "no"; then
103103
[sockets.c multicast.c conversions.c sockaddr_conv.c sendrecvmsg.c],
104104
[$ext_shared],,
105105
$PHP_SOCKETS_CFLAGS)
106-
PHP_INSTALL_HEADERS([ext/sockets/], [php_sockets.h])
106+
PHP_INSTALL_HEADERS([ext/sockets], [php_sockets.h])
107107
fi

sapi/cli/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ if test "$PHP_CLI" != "no"; then
5656

5757
PHP_OUTPUT(sapi/cli/php.1)
5858

59-
PHP_INSTALL_HEADERS([sapi/cli/cli.h])
59+
PHP_INSTALL_HEADERS([sapi/cli], [cli.h])
6060
fi
6161
AC_MSG_RESULT($PHP_CLI)

sapi/embed/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if test "$PHP_EMBED" != "no"; then
2626
if test "$PHP_EMBED_TYPE" != "no"; then
2727
PHP_SUBST(LIBPHP_CFLAGS)
2828
PHP_SELECT_SAPI(embed, $PHP_EMBED_TYPE, php_embed.c, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
29-
PHP_INSTALL_HEADERS([sapi/embed/php_embed.h])
29+
PHP_INSTALL_HEADERS([sapi/embed], [php_embed.h])
3030
fi
3131
AC_MSG_RESULT([$PHP_EMBED_TYPE])
3232
else

0 commit comments

Comments
 (0)