diff options
author | Avuton Olrich <avuton@gmail.com> | 2009-03-05 16:21:53 -0800 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2009-03-05 16:46:19 -0800 |
commit | f6413d2d5fe8983d97cc07cd057c72b0da633446 (patch) | |
tree | 49e58c665aac75e7d975a4841f449f5951db66ac | |
parent | 01cf7feac7bef8b28605b98ef1e7438a995fc554 (diff) |
configure: Fix configure warning presented by lastfm radio.
The configure problem was:
./configure: line 6934: ,: command not found
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1e1669085..c72c5953c 100644 --- a/configure.ac +++ b/configure.ac @@ -263,7 +263,7 @@ if test x$enable_lastfm = xyes; then AC_MSG_ERROR([Cannot enable last.fm radio without curl]) fi - AC_DEFINE(ENABLE_LASTFM, 1, [Define when last.fm radio is enabled]), + AC_DEFINE(ENABLE_LASTFM, 1, [Define when last.fm radio is enabled]) fi AM_CONDITIONAL(ENABLE_LASTFM, test x$enable_lastfm = xyes) |