diff options
author | infirit <[email protected]> | 2013-10-19 11:44:45 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2013-10-19 13:19:52 +0200 |
commit | ae9befd601aa4478064ab04efeb8fd67bd90b49b (patch) | |
tree | af5212e1fb820c3220ecbc00026e130b973c9b74 /battstat | |
parent | 32a2bc051959798d978e6967bd34ff8882aada39 (diff) | |
download | mate-applets-ae9befd601aa4478064ab04efeb8fd67bd90b49b.tar.bz2 mate-applets-ae9befd601aa4478064ab04efeb8fd67bd90b49b.tar.xz |
Fix EXTRA_DIST for applet gschemas
The following fails to include the needed schemas files:
$(gsettings_SCHEMAS_in_in)
replacing it with:
$(gsettings_SCHEMAS).in.in
Diffstat (limited to 'battstat')
-rw-r--r-- | battstat/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/battstat/Makefile.am b/battstat/Makefile.am index b96dee20..4985f251 100644 --- a/battstat/Makefile.am +++ b/battstat/Makefile.am @@ -99,7 +99,7 @@ EXTRA_DIST = \ $(ui_DATA) \ org.mate.applets.BattstatApplet.mate-panel-applet.in.in \ $(service_in_files) \ - $(gsettings_SCHEMAS_in_in) + $(gsettings_SCHEMAS).in.in -include $(top_srcdir)/git.mk |