mirror of
git://git.sv.gnu.org/autoconf
synced 2025-03-31 15:00:26 +08:00
* autoconf.sh (M4): Handle PC drive letters.
* autoupdate.sh: Likewise.
This commit is contained in:
parent
36535d5360
commit
3e7682ecb7
@ -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
|
||||
|
@ -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;;
|
||||
|
@ -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;;
|
||||
|
@ -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;;
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user