* autoconf.sh (M4): Handle PC drive letters.

* autoupdate.sh: Likewise.
This commit is contained in:
Akim Demaille 2001-01-11 14:18:48 +00:00
parent 36535d5360
commit 3e7682ecb7
6 changed files with 21 additions and 16 deletions

View File

@ -1,3 +1,8 @@
2001-01-11 Kelly Anderson <tgcorp@attglobal.net>
* autoconf.sh (M4): Handle PC drive letters.
* autoupdate.sh: Likewise.
2001-01-11 Steven G. Johnson <stevenj@alum.mit.edu>
* aclang.m4 (AC_PROG_F77): Add pgf90 to the list of compilers to

View File

@ -95,8 +95,8 @@ ac_LF_and_DOT=`echo; echo .`
# Handle the case that m4 has moved since we were configured.
# It may have been found originally in a build directory.
: ${M4=@M4@}
case "$M4" in
/*) test -f "$M4" || M4=m4 ;;
case $M4 in
/*|[a-zA-Z]:*) test -f "$M4" || M4=m4 ;;
esac
# Some non-GNU m4's don't reject the --help option, so give them /dev/null.
case `$M4 --help </dev/null 2>&1` in
@ -297,8 +297,8 @@ elif test ! -r "$infile"; then
fi
# Output is produced into FD 4. Prepare it.
case "x$outfile" in
x-) # Output to stdout
case $outfile in
-) # Output to stdout
exec 4>&1 ;;
* )
exec 4>$outfile;;

View File

@ -95,8 +95,8 @@ ac_LF_and_DOT=`echo; echo .`
# Handle the case that m4 has moved since we were configured.
# It may have been found originally in a build directory.
: ${M4=@M4@}
case "$M4" in
/*) test -f "$M4" || M4=m4 ;;
case $M4 in
/*|[a-zA-Z]:*) test -f "$M4" || M4=m4 ;;
esac
# Some non-GNU m4's don't reject the --help option, so give them /dev/null.
case `$M4 --help </dev/null 2>&1` in
@ -297,8 +297,8 @@ elif test ! -r "$infile"; then
fi
# Output is produced into FD 4. Prepare it.
case "x$outfile" in
x-) # Output to stdout
case $outfile in
-) # Output to stdout
exec 4>&1 ;;
* )
exec 4>$outfile;;

View File

@ -95,8 +95,8 @@ ac_LF_and_DOT=`echo; echo .`
# Handle the case that m4 has moved since we were configured.
# It may have been found originally in a build directory.
: ${M4=@M4@}
case "$M4" in
/*) test -f "$M4" || M4=m4 ;;
case $M4 in
/*|[a-zA-Z]:*) test -f "$M4" || M4=m4 ;;
esac
# Some non-GNU m4's don't reject the --help option, so give them /dev/null.
case `$M4 --help </dev/null 2>&1` in
@ -297,8 +297,8 @@ elif test ! -r "$infile"; then
fi
# Output is produced into FD 4. Prepare it.
case "x$outfile" in
x-) # Output to stdout
case $outfile in
-) # Output to stdout
exec 4>&1 ;;
* )
exec 4>$outfile;;

View File

@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23.
.TH AUTOCONF "1" "December 2000" "GNU autoconf 2.49c" FSF
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.24.
.TH AUTOCONF "1" "January 2001" "GNU autoconf 2.49c" FSF
.SH NAME
autoconf \- Generate configuration scripts
.SH SYNOPSIS

View File

@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23.
.TH AUTOUPDATE "1" "December 2000" "GNU autoconf 2.49c" FSF
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.24.
.TH AUTOUPDATE "1" "January 2001" "GNU autoconf 2.49c" FSF
.SH NAME
autoupdate \- Update a configure.in to a newer Autoconf
.SH SYNOPSIS