diff options
author | infirit <[email protected]> | 2013-10-19 11:44:45 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2013-10-19 11:44:45 +0200 |
commit | 31289af8390241e97c385528f5d7605a28a6bc8e (patch) | |
tree | 8543eecd079b412b37ca33e49af63af1af8cf91a /cpufreq | |
parent | 75930b7ef62e25a6ee24ab5ce8cfb4c193feab6a (diff) | |
download | mate-applets-31289af8390241e97c385528f5d7605a28a6bc8e.tar.bz2 mate-applets-31289af8390241e97c385528f5d7605a28a6bc8e.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 'cpufreq')
-rw-r--r-- | cpufreq/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpufreq/Makefile.am b/cpufreq/Makefile.am index e6a63607..9e821585 100644 --- a/cpufreq/Makefile.am +++ b/cpufreq/Makefile.am @@ -46,7 +46,7 @@ CLEANFILES = \ EXTRA_DIST = \ org.mate.applets.CPUFreqApplet.mate-panel-applet.in.in \ $(service_in_files) \ - $(gsettings_SCHEMAS_in_in) \ + $(gsettings_SCHEMAS).in.in \ $(builder_DATA) \ $(ui_DATA) |