aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorMarco Barisione <marco@barisione.org>2008-02-12 19:46:23 +0800
committerMarco Barisione <marco@barisione.org>2008-02-12 19:46:23 +0800
commitdd04a9cd2499efd8c6af957b567a345ca047f965 (patch)
treed57e444dc98e7ab49fa2c6ea9138a704486f73e7 /libempathy-gtk
parent9651590dfd068b739f52103e34dc96303a21a5a4 (diff)
downloadgsoc2013-empathy-dd04a9cd2499efd8c6af957b567a345ca047f965.tar
gsoc2013-empathy-dd04a9cd2499efd8c6af957b567a345ca047f965.tar.gz
gsoc2013-empathy-dd04a9cd2499efd8c6af957b567a345ca047f965.tar.bz2
gsoc2013-empathy-dd04a9cd2499efd8c6af957b567a345ca047f965.tar.lz
gsoc2013-empathy-dd04a9cd2499efd8c6af957b567a345ca047f965.tar.xz
gsoc2013-empathy-dd04a9cd2499efd8c6af957b567a345ca047f965.tar.zst
gsoc2013-empathy-dd04a9cd2499efd8c6af957b567a345ca047f965.zip
Allow digits in type names when generating the marshallers
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/Makefile.am b/libempathy-gtk/Makefile.am
index 24c933714..94e4d6a29 100644
--- a/libempathy-gtk/Makefile.am
+++ b/libempathy-gtk/Makefile.am
@@ -136,7 +136,7 @@ glade_DATA = \
empathy-gtk-marshal.list: $(libempathy_gtk_la_SOURCES) Makefile.am
( cd $(srcdir) && \
- sed -n -e 's/.*empathy_gtk_marshal_\([[:upper:]]*__[[:upper:]_]*\).*/\1/p' \
+ sed -n -e 's/.*empathy_gtk_marshal_\([A-Z0-9]*__[A-Z0-9_]*\).*/\1/p' \
$(libempathy_gtk_la_SOURCES) ) \
| sed -e 's/__/:/' -e 'y/_/,/' | sort -u > $@.tmp
if cmp -s $@.tmp $@; then \