diff options
author | infirit <[email protected]> | 2014-11-26 19:08:21 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-11-26 19:08:21 +0100 |
commit | 001a8b65d1f5cf0a453975af05a547bbdeea1c2f (patch) | |
tree | e6360793f6a2bdc3eb4b856e28d67271cbcb5caf | |
parent | 3f46f5fe76c4e48dde9d1bb6f8953bbce9e09702 (diff) | |
download | mate-applets-001a8b65d1f5cf0a453975af05a547bbdeea1c2f.tar.bz2 mate-applets-001a8b65d1f5cf0a453975af05a547bbdeea1c2f.tar.xz |
Fix typo in configure.ac
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 30ed4583..4802a7b0 100644 --- a/configure.ac +++ b/configure.ac @@ -478,7 +478,7 @@ AC_CHECK_HEADER(cpufreq.h, have_libcpufreq=yes, have_libcpufreq=no) LIBCPUFREQ_LIBS= if test "x$have_libcpufreq" = "xyes"; then AC_DEFINE([HAVE_LIBCPUFREQ], [1], [Have libcpufreq.]) - LIBCPUFREQ_LIBS="l$with_cpufreq_lib" + LIBCPUFREQ_LIBS="-l$with_cpufreq_lib" fi AM_CONDITIONAL(HAVE_LIBCPUFREQ, test x$have_libcpufreq = xyes) AC_SUBST(LIBCPUFREQ_LIBS) |