From: Stan Seibert Date: Fri, 21 Dec 2001 03:16:47 +0000 (+0000) Subject: Quick fixes: Silly bug in shell test and missing quotes in error message X-Git-Tag: v1.3.3~843 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=829918dda518288224ab842b1d8873f320387afc;p=platform%2Fupstream%2Flibvorbis.git Quick fixes: Silly bug in shell test and missing quotes in error message (closes bug #92). svn path=/trunk/vorbis/; revision=2876 --- diff --git a/acinclude.m4 b/acinclude.m4 index 09c4aec..2b98134 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -31,7 +31,7 @@ AC_ARG_ENABLE(oggtest, [ --disable-oggtest Do not try to compile and run OGG_CFLAGS="-I$ogg_includes" elif test "x$ogg_prefix" != "x" ; then OGG_CFLAGS="-I$ogg_prefix/include" - elif test "$prefix" != "xNONE"; then + elif test "x$prefix" != "xNONE"; then OGG_CFLAGS="-I$prefix/include" fi diff --git a/autogen.sh b/autogen.sh index 5878175..98f8a22 100755 --- a/autogen.sh +++ b/autogen.sh @@ -21,7 +21,7 @@ DIE=0 (automake --version) < /dev/null > /dev/null 2>&1 || { echo echo "You must have automake installed to compile $package." - echo "Download the appropriate package for your system, + echo "Download the appropriate package for your system," echo "or get the source from one of the GNU ftp sites" echo "listed in http://www.gnu.org/order/ftp.html" DIE=1 @@ -30,7 +30,7 @@ DIE=0 (libtool --version) < /dev/null > /dev/null 2>&1 || { echo echo "You must have libtool installed to compile $package." - echo "Download the appropriate package for your system, + echo "Download the appropriate package for your system," echo "or get the source from one of the GNU ftp sites" echo "listed in http://www.gnu.org/order/ftp.html" DIE=1