mirror of
git://git.sv.gnu.org/autoconf
synced 2025-03-19 14:40:24 +08:00
1999-01-19 Pavel Roskin <pavel_roskin@geocities.com>
* ifnames.sh: Source lines ending with backslash are prepended to the following line before further processing.
This commit is contained in:
parent
0f84fcb2f8
commit
4d134a089b
@ -1,3 +1,8 @@
|
||||
1999-01-19 Pavel Roskin <pavel_roskin@geocities.com>
|
||||
|
||||
* ifnames.sh: Source lines ending with backslash are prepended to
|
||||
the following line before further processing.
|
||||
|
||||
1999-01-19 Ben Elliston <bje@cygnus.com>
|
||||
|
||||
* acspecific.m4 (AC_PROG_CXXCPP): Substitute @CXXCPP@ correctly
|
||||
|
@ -90,6 +90,15 @@ fi
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
while (sub(/\\$/, "", $0) > 0) {
|
||||
if ((getline tmp) > 0)
|
||||
$0 = $0 tmp
|
||||
else
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
/^[\t ]*#/ {
|
||||
if (sub(/^[\t ]*#[\t ]*ifn?def[\t ]+/, "", $0)) {
|
||||
sub(/[^A-Za-z_0-9].*/, "", $0)
|
||||
|
@ -90,6 +90,15 @@ fi
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
while (sub(/\\$/, "", $0) > 0) {
|
||||
if ((getline tmp) > 0)
|
||||
$0 = $0 tmp
|
||||
else
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
/^[\t ]*#/ {
|
||||
if (sub(/^[\t ]*#[\t ]*ifn?def[\t ]+/, "", $0)) {
|
||||
sub(/[^A-Za-z_0-9].*/, "", $0)
|
||||
|
@ -90,6 +90,15 @@ fi
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
while (sub(/\\$/, "", $0) > 0) {
|
||||
if ((getline tmp) > 0)
|
||||
$0 = $0 tmp
|
||||
else
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
/^[\t ]*#/ {
|
||||
if (sub(/^[\t ]*#[\t ]*ifn?def[\t ]+/, "", $0)) {
|
||||
sub(/[^A-Za-z_0-9].*/, "", $0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user