Quick fixes: Silly bug in shell test and missing quotes in error message
authorStan Seibert <volsung@xiph.org>
Fri, 21 Dec 2001 03:16:47 +0000 (03:16 +0000)
committerStan Seibert <volsung@xiph.org>
Fri, 21 Dec 2001 03:16:47 +0000 (03:16 +0000)
(closes bug #92).

svn path=/trunk/vorbis/; revision=2876

acinclude.m4
autogen.sh

index 09c4aec..2b98134 100644 (file)
@@ -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
 
index 5878175..98f8a22 100755 (executable)
@@ -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