Fixed typos ...

This commit is contained in:
curt 2002-01-17 16:58:18 +00:00
parent b496593883
commit c3b21e143c
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ echo "Running autoconf"
autoconf
# fixup Makefiles for Irix
if test "$OS" = "IRIX" -o "$OS" = "IRIX64"; then
if test "$OSTYPE" = "IRIX" -o "$OSTYPE" = "IRIX64"; then
echo "Fixing Makefiles for Irix"
for n in `find . -name Makefile.in`; do \
mv -f $n $n.ar-new; \

View File

@ -55,7 +55,7 @@ else
echo "includedir changed to" $includedir "libdir is" $libdir
fi
# Determine version of automake ... important becuase of
# Determine version of automake ... important because of
# incompatibilities between versions
AUTO_MAKE_VERSION=`automake --version | head -1 | awk '{print $4}' | sed -e 's/\-p[[0-9]]$//' | sed -e 's/\.//'`
AM_CONDITIONAL(ANCIENT_AUTOMAKE, test $AUTO_MAKE_VERSION -lt 14)