From d63dfba11307b3c1fed71e6465b1bd7acce073ba Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Tue, 19 Feb 2013 17:56:31 +0000 Subject: [PATCH] cogl-pango: Add a missing backslash in the Makefile There was a missing backslash in the LDFLAGS for libcogl-pango2. This was stopping it having the right library version information and the library would have the wrong filename. Reviewed-by: Robert Bragg (cherry picked from commit cf3d2b3de84d4e1e90b83cf3f69653f38997ef97) --- cogl-pango/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogl-pango/Makefile.am b/cogl-pango/Makefile.am index 69b3c0d45..2f86cb707 100644 --- a/cogl-pango/Makefile.am +++ b/cogl-pango/Makefile.am @@ -32,7 +32,7 @@ libcogl_pango_la_LIBADD = $(top_builddir)/cogl/libcogl.la libcogl_pango_la_LIBADD += $(COGL_DEP_LIBS) $(COGL_PANGO_DEP_LIBS) $(COGL_EXTRA_LDFLAGS) libcogl_pango_la_LDFLAGS = \ -export-dynamic \ - -export-symbols-regex "^cogl_pango_.*" + -export-symbols-regex "^cogl_pango_.*" \ -no-undefined \ -version-info @COGL_LT_CURRENT@:@COGL_LT_REVISION@:@COGL_LT_AGE@