summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2015-12-14 15:30:41 +0100
committerChristophe Fergeau <cfergeau@redhat.com>2015-12-14 15:30:41 +0100
commitd13fdd7fa9f539959529535fbfacbdbb5972a9a7 (patch)
tree526253d5138effafd0dfd38246c44bfd9dcd1e8b
parent47122befcde4e40a8be0267af2bd77811b838c84 (diff)
downloadspice-common-d13fdd7fa9f539959529535fbfacbdbb5972a9a7.tar.gz
spice-common-d13fdd7fa9f539959529535fbfacbdbb5972a9a7.tar.xz
spice-common-d13fdd7fa9f539959529535fbfacbdbb5972a9a7.zip
m4: Fix SPICE_WARNING on el6
autogen.sh fails on el6 unless the second argument to AC_DEFUN([SPICE_WARNING]) is enclosed in []
-rw-r--r--m4/spice-deps.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/spice-deps.m4 b/m4/spice-deps.m4
index 6237a10..f854eb1 100644
--- a/m4/spice-deps.m4
+++ b/m4/spice-deps.m4
@@ -11,7 +11,7 @@ m4_ifndef([AS_VAR_COPY],
# ----------------------
# Collect warnings and print them at the end so they are clearly visible.
# ---------------------
-AC_DEFUN([SPICE_WARNING],AS_VAR_APPEND([spice_warnings],["|$1"]))
+AC_DEFUN([SPICE_WARNING],[AS_VAR_APPEND([spice_warnings],["|$1"])])
AC_DEFUN([SPICE_PRINT_MESSAGES],[
ac_save_IFS="$IFS"
IFS="|"