diff options
author | Ted Gould <ted@canonical.com> | 2009-10-13 22:19:39 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-13 22:19:39 -0500 |
commit | 17192c26de5cc0662c218196ef4b53ebaf1eef0b (patch) | |
tree | 50b8151e77cb3c7df2fe6b78e4aab7bbba039847 /src | |
parent | 7b2c29fbd83d2679a123a8825c92b3ac97e79229 (diff) | |
download | libayatana-appindicator-17192c26de5cc0662c218196ef4b53ebaf1eef0b.tar.gz libayatana-appindicator-17192c26de5cc0662c218196ef4b53ebaf1eef0b.tar.bz2 libayatana-appindicator-17192c26de5cc0662c218196ef4b53ebaf1eef0b.zip |
Fixing symbol names.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index ae83eb3..23235c5 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -42,14 +42,14 @@ DBUS_SPECS = \ %-client.h: %.xml dbus-binding-tool \ - --prefix=_$(<:.xml=)_client \ + --prefix=_$(subst -,_,$(<:.xml=))_client \ --mode=glib-client \ --output=$@ \ $< %-server.h: %.xml dbus-binding-tool \ - --prefix=_$(<:.xml=)_server \ + --prefix=_$(subst -,_,$(<:.xml=))_server \ --mode=glib-server \ --output=$@ \ $< |