mirror of
git://git.sv.gnu.org/autoconf
synced 2025-04-06 15:10:23 +08:00
* tests/atgeneral.m4 (AT_INIT): Avoid foo="bar
", foo=bar
is
enough. Use grep to check the presence of a string in a stream. * m4/atconfig.m4: Quote.
This commit is contained in:
parent
1747d743aa
commit
c27236bff5
@ -1,3 +1,10 @@
|
||||
2000-10-18 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* tests/atgeneral.m4 (AT_INIT): Avoid foo="`bar`", foo=`bar` is
|
||||
enough.
|
||||
Use grep to check the presence of a string in a stream.
|
||||
* m4/atconfig.m4: Quote.
|
||||
|
||||
2000-10-18 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* acgeneral.m4 (_AC_SHELL_DIRNAME): Quote the `sed' fall back.
|
||||
|
@ -171,7 +171,7 @@ fi
|
||||
# over files, the full test suite cleans up both before and after test groups.
|
||||
# Snippet )4
|
||||
|
||||
if test -n "`$1 --version | sed -n s/$at_package.*$at_version/OK/p`"; then
|
||||
if $1 --version | grep "$at_package.*$at_version" >/dev/null; then
|
||||
at_banner="Testing suite for $at_package, version $at_version"
|
||||
at_dashes=`echo $at_banner | sed s/./=/g`
|
||||
echo "$at_dashes"
|
||||
@ -213,9 +213,9 @@ else
|
||||
test -z "$at_silent" && echo 'at_verbose=:'
|
||||
sed -n "/^[#] Snippet (4/,/^[#] Snippet )4/p" $[0]
|
||||
sed -n "/^[#] Snippet (c$at_group(/,/^[#] Snippet )c$at_group)/p" $[0]
|
||||
at_desc="`sed -n \
|
||||
at_desc=`sed -n \
|
||||
'/^[#] Snippet (d'$at_group'(/,/^[#] Snippet )d'$at_group')/p' $[0] \
|
||||
| sed -n '2s/^[#] //p'`"
|
||||
| sed -n '2s/^[#] //p'`
|
||||
echo 'if $at_verbose; then'
|
||||
echo ' at_banner="$[0]: '$at_desc'"'
|
||||
echo ' at_dashes=`echo $at_banner | sed s/./=/g`'
|
||||
|
@ -1,11 +1,13 @@
|
||||
## ----------------------##
|
||||
## ----------------------## -*- Autoconf -*-
|
||||
## Prepare for testing. ##
|
||||
## ----------------------##
|
||||
|
||||
#serial 2
|
||||
|
||||
# Single argument says where are built sources to test, relative to the
|
||||
# built test directory. Maybe omitted if the same (flat distribution).
|
||||
|
||||
AC_DEFUN(AT_CONFIG,
|
||||
[AT_TESTPATH=ifelse($1, , ., $1)
|
||||
AC_DEFUN([AT_CONFIG],
|
||||
[AT_TESTPATH=ifelse([$1], [], [.], [$1])
|
||||
AC_SUBST(AT_TESTPATH)
|
||||
])
|
||||
|
@ -171,7 +171,7 @@ fi
|
||||
# over files, the full test suite cleans up both before and after test groups.
|
||||
# Snippet )4
|
||||
|
||||
if test -n "`$1 --version | sed -n s/$at_package.*$at_version/OK/p`"; then
|
||||
if $1 --version | grep "$at_package.*$at_version" >/dev/null; then
|
||||
at_banner="Testing suite for $at_package, version $at_version"
|
||||
at_dashes=`echo $at_banner | sed s/./=/g`
|
||||
echo "$at_dashes"
|
||||
@ -213,9 +213,9 @@ else
|
||||
test -z "$at_silent" && echo 'at_verbose=:'
|
||||
sed -n "/^[#] Snippet (4/,/^[#] Snippet )4/p" $[0]
|
||||
sed -n "/^[#] Snippet (c$at_group(/,/^[#] Snippet )c$at_group)/p" $[0]
|
||||
at_desc="`sed -n \
|
||||
at_desc=`sed -n \
|
||||
'/^[#] Snippet (d'$at_group'(/,/^[#] Snippet )d'$at_group')/p' $[0] \
|
||||
| sed -n '2s/^[#] //p'`"
|
||||
| sed -n '2s/^[#] //p'`
|
||||
echo 'if $at_verbose; then'
|
||||
echo ' at_banner="$[0]: '$at_desc'"'
|
||||
echo ' at_dashes=`echo $at_banner | sed s/./=/g`'
|
||||
|
Loading…
x
Reference in New Issue
Block a user