Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
5dd59f65
Commit
5dd59f65
authored
May 31, 2006
by
Daniel Jacobowitz
Committed by
Daniel Jacobowitz
May 31, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* texi2pod.pl: Correct handling of absolute @include.
From-SVN: r114271
parent
54aefc36
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
contrib/ChangeLog
+4
-0
contrib/texi2pod.pl
+4
-2
No files found.
contrib/ChangeLog
View file @
5dd59f65
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
.
...
...
contrib/texi2pod.pl
View file @
5dd59f65
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment