mirror of
git://git.sv.gnu.org/autoconf
synced 2025-03-19 14:40:24 +08:00
protec for with if
This commit is contained in:
parent
e5fdcf0049
commit
1a0e293e20
@ -224,14 +224,16 @@ test -f ${config_h}.bot && cat ${config_h}.bot
|
||||
|
||||
status=0
|
||||
|
||||
for sym in $syms; do
|
||||
if fgrep $sym $TEMPLATES >/dev/null; then
|
||||
: # All is well.
|
||||
else
|
||||
echo "$0: Symbol \`${sym}' is not covered by $TEMPLATES" >&2
|
||||
status=1
|
||||
fi
|
||||
done
|
||||
if test -n "$syms"; then
|
||||
for sym in $syms; do
|
||||
if fgrep $sym $TEMPLATES >/dev/null; then
|
||||
: # All is well.
|
||||
else
|
||||
echo "$0: Symbol \`${sym}' is not covered by $TEMPLATES" >&2
|
||||
status=1
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
if test $# -eq 0; then
|
||||
if test $status -eq 0; then
|
||||
|
@ -224,14 +224,16 @@ test -f ${config_h}.bot && cat ${config_h}.bot
|
||||
|
||||
status=0
|
||||
|
||||
for sym in $syms; do
|
||||
if fgrep $sym $TEMPLATES >/dev/null; then
|
||||
: # All is well.
|
||||
else
|
||||
echo "$0: Symbol \`${sym}' is not covered by $TEMPLATES" >&2
|
||||
status=1
|
||||
fi
|
||||
done
|
||||
if test -n "$syms"; then
|
||||
for sym in $syms; do
|
||||
if fgrep $sym $TEMPLATES >/dev/null; then
|
||||
: # All is well.
|
||||
else
|
||||
echo "$0: Symbol \`${sym}' is not covered by $TEMPLATES" >&2
|
||||
status=1
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
if test $# -eq 0; then
|
||||
if test $status -eq 0; then
|
||||
|
@ -224,14 +224,16 @@ test -f ${config_h}.bot && cat ${config_h}.bot
|
||||
|
||||
status=0
|
||||
|
||||
for sym in $syms; do
|
||||
if fgrep $sym $TEMPLATES >/dev/null; then
|
||||
: # All is well.
|
||||
else
|
||||
echo "$0: Symbol \`${sym}' is not covered by $TEMPLATES" >&2
|
||||
status=1
|
||||
fi
|
||||
done
|
||||
if test -n "$syms"; then
|
||||
for sym in $syms; do
|
||||
if fgrep $sym $TEMPLATES >/dev/null; then
|
||||
: # All is well.
|
||||
else
|
||||
echo "$0: Symbol \`${sym}' is not covered by $TEMPLATES" >&2
|
||||
status=1
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
if test $# -eq 0; then
|
||||
if test $status -eq 0; then
|
||||
|
Loading…
x
Reference in New Issue
Block a user