diff options
author | Ted Gould <ted@gould.cx> | 2011-01-06 16:09:32 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-01-06 16:09:32 -0600 |
commit | 8877308fb3e7329560bd619168fc696402881a3e (patch) | |
tree | 1b496e420871484a2168fd93ed42ed4e4f6051fd /libindicator | |
parent | 7a022258c1ea30082fedd56251a3205a5ed30487 (diff) | |
parent | fbef9e6709b9203ec124277a3671dde66451253e (diff) | |
download | libayatana-indicator-8877308fb3e7329560bd619168fc696402881a3e.tar.gz libayatana-indicator-8877308fb3e7329560bd619168fc696402881a3e.tar.bz2 libayatana-indicator-8877308fb3e7329560bd619168fc696402881a3e.zip |
Fixing build source path and build a GTK3 loader
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 ed963d1..a799d8c 100644 --- a/libindicator/Makefile.am +++ b/libindicator/Makefile.am @@ -73,7 +73,7 @@ glib_marshal_prefix = _indicator_object_marshal indicator-object-enum-types.h: s-enum-types-h @true s-enum-types-h: $(indicator_headers) - ( cd $(srcdir) && $(GLIB_MKENUMS) --template $(srcdir)/indicator-object-enum-types.h.template \ + ( cd $(srcdir) && $(GLIB_MKENUMS) --template $(abs_srcdir)/indicator-object-enum-types.h.template \ $(indicator_headers) ) >> tmp-indicator-object-enum-types.h \ && (cmp -s tmp-indicator-object-enum-types.h indicator-object-enum-types.h || cp tmp-indicator-object-enum-types.h indicator-object-enum-types.h ) \ && rm -f tmp-indicator-object-enum-types.h && echo timestamp > $(@F) @@ -81,7 +81,7 @@ s-enum-types-h: $(indicator_headers) indicator-object-enum-types.c: s-enum-types-c @true s-enum-types-c: $(indicator_headers) - ( cd $(srcdir) && $(GLIB_MKENUMS) --template $(srcdir)/indicator-object-enum-types.c.template \ + ( cd $(srcdir) && $(GLIB_MKENUMS) --template $(abs_srcdir)/indicator-object-enum-types.c.template \ $(indicator_headers) ) > tmp-indicator-object-enum-types.c \ && (cmp -s tmp-indicator-object-enum-types.c indicator-object-enum-types.c || cp tmp-indicator-object-enum-types.c indicator-object-enum-types.c ) \ && rm -f tmp-indicator-object-enum-types.c |