diff options
author | Ted Gould <ted@gould.cx> | 2009-12-17 00:14:58 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2009-12-17 00:14:58 -0600 |
commit | 20a7ac227046fa1e117abfe93ad3c86d923b9d40 (patch) | |
tree | c61182ba6c059aa3086267f9b990b740a4b25596 /src | |
parent | 0d66efa5b71d3d4e9e4456ea5a59067b9c923b8e (diff) | |
parent | 97f6e62d618747a03ba44486f70a2230af5177fd (diff) | |
download | libayatana-appindicator-20a7ac227046fa1e117abfe93ad3c86d923b9d40.tar.gz libayatana-appindicator-20a7ac227046fa1e117abfe93ad3c86d923b9d40.tar.bz2 libayatana-appindicator-20a7ac227046fa1e117abfe93ad3c86d923b9d40.zip |
* Upstream work
* Python bindings
* Mono binding clean up
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 ee4b7a7..f101d12 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -107,14 +107,14 @@ DBUS_SPECS = \ %-client.h: %.xml dbus-binding-tool \ - --prefix=_$(subst -,_,$(<:.xml=))_client \ + --prefix=_$(notdir $(subst -,_,$(<:.xml=)))_client \ --mode=glib-client \ --output=$@ \ $< %-server.h: %.xml dbus-binding-tool \ - --prefix=_$(subst -,_,$(<:.xml=))_server \ + --prefix=_$(notdir $(subst -,_,$(<:.xml=)))_server \ --mode=glib-server \ --output=$@ \ $< |