Remove redundant variable, some indendation fixes.
Originally committed to SVN as r2029.
This commit is contained in:
parent
3b7dce9c8e
commit
2ecfca5ac8
1 changed files with 4 additions and 4 deletions
|
@ -217,15 +217,15 @@ if test -z "$*"; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if test -z "$ACLOCAL_FLAGS"; then
|
if test -z "$ACLOCAL_FLAGS"; then
|
||||||
acdir=`$ACLOCAL --print-ac-dir`
|
acdir=`$ACLOCAL --print-ac-dir`
|
||||||
m4list=$REQUIRED_M4
|
|
||||||
|
|
||||||
for file in $m4list;
|
for file in $REQUIRED_M4;
|
||||||
do
|
do
|
||||||
if [ ! -f "$acdir/$file" ]; then
|
if [ ! -f "$acdir/$file" ]; then
|
||||||
echo
|
echo
|
||||||
echo "WARNING: aclocal's directory is $acdir, but..."
|
echo "WARNING: aclocal's directory is $acdir, but..."
|
||||||
echo " no file $acdir/$file"
|
echo " no file $acdir/$file"
|
||||||
echo " You may see fatal macro warnings below."
|
echo " You may see fatal macro warnings below."
|
||||||
echo " If these files are installed in /some/dir, set the "
|
echo " If these files are installed in /some/dir, set the "
|
||||||
|
|
Loading…
Reference in a new issue