diff options
author | Harald van Dijk <[email protected]> | 2021-01-17 19:26:28 +0000 |
---|---|---|
committer | Robert Antoni Buj Gelonch <[email protected]> | 2021-01-17 20:43:01 +0100 |
commit | 930c4ec5082c71b08f2480843797e0dfcdc2a41f (patch) | |
tree | 3e715dd44ae32a980bbdd0a22fb218da699540c3 | |
parent | 22dc48a886361b1bfd8ea3edcf2097d444087e18 (diff) | |
download | mate-applets-930c4ec5082c71b08f2480843797e0dfcdc2a41f.tar.bz2 mate-applets-930c4ec5082c71b08f2480843797e0dfcdc2a41f.tar.xz |
cpufreq: fix cpufreq-selector-sysfs duplicate definitions
Commit 4cb6f915 added cpufreq-selector-sysfs.[ch] to
mate_cpufreq_selector_SOURCES for the !HAVE_LIBCPUFREQ case, but left
them unconditionally included as well. Including them twice leads to
duplicate definitions for the symbols defined by them.
-rw-r--r-- | cpufreq/src/cpufreq-selector/Makefile.am | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cpufreq/src/cpufreq-selector/Makefile.am b/cpufreq/src/cpufreq-selector/Makefile.am index 375d0371..4f4eca5c 100644 --- a/cpufreq/src/cpufreq-selector/Makefile.am +++ b/cpufreq/src/cpufreq-selector/Makefile.am @@ -21,7 +21,6 @@ endif mate_cpufreq_selector_SOURCES = \ cpufreq-selector.c cpufreq-selector.h \ - cpufreq-selector-sysfs.c cpufreq-selector-sysfs.h \ $(service_files) \ cpufreq-selector-factory.c cpufreq-selector-factory.h \ $(BUILT_SOURCES) \ |