From 2321c85f034ecb4a0d94853718cb258aefce65c4 Mon Sep 17 00:00:00 2001 From: Evan Nemerson Date: Thu, 14 Feb 2013 01:37:04 -0800 Subject: [PATCH] colorhug: fix symbol-prefix passed to g-ir-scanner The symbol-prefix should not have a trailing underscore. Leaving it as it currently is causes problems for Vala, which is currently the only software to actually use the symbol-prefix from the GIR. --- lib/colorhug/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/colorhug/Makefile.am b/lib/colorhug/Makefile.am index 8b18d7b..26422f9 100644 --- a/lib/colorhug/Makefile.am +++ b/lib/colorhug/Makefile.am @@ -134,7 +134,7 @@ ColorHug-1.0.gir: libcolorhug.la ColorHug_1_0_gir_INCLUDES = GObject-2.0 Gio-2.0 GUsb-1.0 Colord-1.0 ColorHug_1_0_gir_CFLAGS = $(AM_CPPFLAGS) ColorHug_1_0_gir_SCANNERFLAGS = --identifier-prefix=Ch \ - --symbol-prefix=ch_ \ + --symbol-prefix=ch \ --warn-all \ --add-include-path=$(srcdir) \ --c-include="colorhug.h" -- 1.8.1.2