From 829918dda518288224ab842b1d8873f320387afc Mon Sep 17 00:00:00 2001 From: Stan Seibert Date: Fri, 21 Dec 2001 03:16:47 +0000 Subject: [PATCH] Quick fixes: Silly bug in shell test and missing quotes in error message (closes bug #92). svn path=/trunk/vorbis/; revision=2876 --- acinclude.m4 | 2 +- autogen.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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 -- 2.7.4