diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-06-04 09:04:08 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2006-06-04 09:04:08 +0000 |
commit | 02975fca003e972b72aa653b60748f407cee423c (patch) | |
tree | 23f97a05ab956718974a965dd89210605024514b | |
parent | d11e19548c4b5e428038feb2abae9b4dad6900d0 (diff) | |
download | mpd-02975fca003e972b72aa653b60748f407cee423c.tar.gz mpd-02975fca003e972b72aa653b60748f407cee423c.tar.xz mpd-02975fca003e972b72aa653b60748f407cee423c.zip |
configure.ac: fix a bash-ism in generated ./configure
git-svn-id: https://svn.musicpd.org/mpd/trunk@4243 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 3ed85057e..9eb380471 100644 --- a/configure.ac +++ b/configure.ac @@ -527,7 +527,7 @@ int main () return 0; } -], AC_MSG_RESULT(yes), AC_MSG_RESULT(no) enable_oggvorbis=no,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) +], AC_MSG_RESULT(yes), [AC_MSG_RESULT(no);enable_oggvorbis=no],[echo $ac_n "cross compiling; assumed OK... $ac_c"]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi |