From c1b63526774614dd5a1f6710e63ae466489469d5 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Fri, 10 Sep 2010 22:56:22 +0100 Subject: [PATCH] syntax: Fully bracket m4 macro arguments. --- php/extension/config.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/php/extension/config.m4 b/php/extension/config.m4 index 2bac2ea..ee19971 100644 --- a/php/extension/config.m4 +++ b/php/extension/config.m4 @@ -15,10 +15,10 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -PHP_ARG_ENABLE(guestfs_php, enable libguestfs PHP bindings, +PHP_ARG_ENABLE([guestfs_php], [enable libguestfs PHP bindings], [ --enable-guestfs-php Enable libguestfs support]) if test "$PHP_GUESTFS_PHP" = "yes"; then - AC_DEFINE(HAVE_GUESTFS_PHP, 1, [Whether you have libguestfs PHP bindings]) - PHP_NEW_EXTENSION(guestfs_php, guestfs_php.c, $ext_shared) + AC_DEFINE([HAVE_GUESTFS_PHP], [1], [Whether you have libguestfs PHP bindings]) + PHP_NEW_EXTENSION([guestfs_php], [guestfs_php.c], [$ext_shared]) fi -- 1.8.3.1