From d15a94ba202d634e427703c4530c97a20106d6d7 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 31 Oct 2014 11:45:21 +0100 Subject: [PATCH] configure: fix escaping in xcb cflags / libs Fixes build with open64 Signed-off-by: Michael Niedermayer --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index e6e3de3f88..40d1f07630 100755 --- a/configure +++ b/configure @@ -5040,8 +5040,8 @@ if enabled libxcb; then enabled libxcb_xfixes && die "ERROR: libxcb_xfixes not found"; } && enable libxcb_xfixes; } - add_cflags "$xcb_event_cflags $xcb_shm_cflags $xcb_xfixes_cflags" - add_extralibs "$xcb_event_libs $xcb_shm_libs $xcb_xfixes_libs" + add_cflags $xcb_event_cflags $xcb_shm_cflags $xcb_xfixes_cflags + add_extralibs $xcb_event_libs $xcb_shm_libs $xcb_xfixes_libs fi fi