diff options
author | Ted Gould <ted@canonical.com> | 2009-11-02 10:48:18 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-11-02 10:48:18 -0600 |
commit | 90446e0f46aec726341a8e178bfa65ddcb057deb (patch) | |
tree | ad82ed26fb1b0690e07a7f232673280db2b03797 /libindicator | |
parent | c99ef2256a94f1ce7c4b54f8c7d5321e29faffa9 (diff) | |
download | libayatana-indicator-90446e0f46aec726341a8e178bfa65ddcb057deb.tar.gz libayatana-indicator-90446e0f46aec726341a8e178bfa65ddcb057deb.tar.bz2 libayatana-indicator-90446e0f46aec726341a8e178bfa65ddcb057deb.zip |
Fixing up the build rules so that they're directory independent.
Diffstat (limited to 'libindicator')
-rw-r--r-- | libindicator/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libindicator/Makefile.am b/libindicator/Makefile.am index 209b787..5c512cd 100644 --- a/libindicator/Makefile.am +++ b/libindicator/Makefile.am @@ -43,14 +43,14 @@ DBUS_SPECS = \ %-client.h: %.xml dbus-binding-tool \ - --prefix=_$(subst -,_,$(<:.xml=))_client \ + --prefix=_$(subst -,_,$(basename $(notdir $<)))_client \ --mode=glib-client \ --output=$@ \ $< %-server.h: %.xml dbus-binding-tool \ - --prefix=_$(subst -,_,$(<:.xml=))_server \ + --prefix=_$(subst -,_,$(basename $(notdir $<)))_server \ --mode=glib-server \ --output=$@ \ $< |