mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
* texi2pod.pl: Correct handling of absolute @include.
This commit is contained in:
parent
20e95c23ab
commit
261dd81b26
@ -1,3 +1,7 @@
|
||||
2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* texi2pod.pl: Correct handling of absolute @include.
|
||||
|
||||
2006-05-02 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* texi2pod.pl: Handle -I.
|
||||
|
@ -239,8 +239,10 @@ while(<$inf>) {
|
||||
|
||||
# Try cwd and $ibase, then explicit -I paths.
|
||||
$done = 0;
|
||||
foreach $path (".", $ibase, @ipath) {
|
||||
open($inf, "<" . $path . "/" . $file) and ($done = 1, last);
|
||||
foreach $path ("", $ibase, @ipath) {
|
||||
$mypath = $file;
|
||||
$mypath = $path . "/" . $mypath if ($path ne "");
|
||||
open($inf, "<" . $mypath) and ($done = 1, last);
|
||||
}
|
||||
die "cannot find $file" if !$done;
|
||||
next;
|
||||
|
Loading…
Reference in New Issue
Block a user