diff options
author | Guido Günther <agx@sigxcpu.org> | 2017-12-08 20:46:34 +0100 |
---|---|---|
committer | Daniel Stone <daniels@collabora.com> | 2017-12-11 09:33:24 +0000 |
commit | 2006655b31abee042f889dc5221cf2a894669d69 (patch) | |
tree | c7fbad42121ef38c5affdf7ea447bb12d95b5c91 /configure.ac | |
parent | 555c548c7e968588607f39367fff842226c5846b (diff) | |
download | weston-2006655b31abee042f889dc5221cf2a894669d69.tar.gz weston-2006655b31abee042f889dc5221cf2a894669d69.tar.bz2 weston-2006655b31abee042f889dc5221cf2a894669d69.zip |
configure.ac: drop spurious bracket
Otherwise configure output looks like
checking for library containing pam_open_session... -lpam
./configure: line 18064: ]: command not found
checking for COLORD... yes
Signed-off-by: Guido Günther <agx@sigxcpu.org>
Reviewed-by: Daniel Stone <daniels@collabora.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ed4b94fd..d1b5f471 100644 --- a/configure.ac +++ b/configure.ac @@ -449,7 +449,7 @@ fi AM_CONDITIONAL(HAVE_PANGO, test "x$have_pango" = "xyes") if test "x$have_pango" = "xyes"; then - AC_DEFINE([HAVE_PANGO], [1], [Have pango])] + AC_DEFINE([HAVE_PANGO], [1], [Have pango]) fi AM_CONDITIONAL(HAVE_CAIRO_GLESV2, |