diff options
author | Ted Gould <ted@gould.cx> | 2010-02-01 11:41:53 -0800 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-02-01 11:41:53 -0800 |
commit | d6090e476c3a1041d0c6216d0127429e3a7842e3 (patch) | |
tree | 6813f9b7117a5cf6fb9fc88c15e858940f9f99ae /src/Makefile.am | |
parent | ae7bfd4df40c251638f35d301f5d684857b0d47e (diff) | |
parent | c73f5af91cace98d07161252b1a78bb3203e67a8 (diff) | |
download | libayatana-appindicator-d6090e476c3a1041d0c6216d0127429e3a7842e3.tar.gz libayatana-appindicator-d6090e476c3a1041d0c6216d0127429e3a7842e3.tar.bz2 libayatana-appindicator-d6090e476c3a1041d0c6216d0127429e3a7842e3.zip |
Fixing the name of the enum strings to match the StatusNotifier spec.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 38e6dd9..efae713 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -63,9 +63,21 @@ pkgconfig_DATA = libappindicator/appindicator-0.1.pc pkgconfigdir = $(libdir)/pkgconfig glib_enum_h = libappindicator/app-indicator-enum-types.h -glib_enum_c = libappindicator/app-indicator-enum-types.c +glib_enum_c = libappindicator/app-indicator-enum-types.gen.c glib_enum_headers = $(libappindicator_headers) +libappindicator/app-indicator-enum-types.c: libappindicator/app-indicator-enum-types.gen.c + sed -e "s|\"passive\"|\"Passive\"|" \ + -e "s|\"active\"|\"Active\"|" \ + -e "s|\"attention\"|\"NeedsAttention\"|" \ + -e "s|\"application-status\"|\"ApplicationStatus\"|" \ + -e "s|\"communications\"|\"Communications\"|" \ + -e "s|\"system-services\"|\"SystemServices\"|" \ + -e "s|\"hardware\"|\"Hardware\"|" \ + -e "s|\"other\"|\"Other\"|" \ + $< > $@ +DISTCLEANFILES += libappindicator/app-indicator-enum-types.c + lib_LTLIBRARIES = \ libappindicator.la @@ -80,7 +92,7 @@ libappindicatorinclude_HEADERS = \ libappindicator_la_SOURCES = \ $(libappindicator_headers) \ - $(glib_enum_c) \ + libappindicator/app-indicator-enum-types.c \ notification-watcher-client.h \ notification-item-server.h \ libappindicator/app-indicator.c |