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
98475c57
Commit
98475c57
authored
Apr 15, 2003
by
DJ Delorie
Committed by
DJ Delorie
Apr 15, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* maint-tool (deps): Scan for headers in $srcdir also.
From-SVN: r65653
parent
9959c8c7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
libiberty/ChangeLog
+4
-0
libiberty/maint-tool
+8
-0
No files found.
libiberty/ChangeLog
View file @
98475c57
2003-04-15 DJ Delorie <dj@redhat.com>
* maint-tool (deps): Scan for headers in $srcdir also.
2003-04-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
PR target/10338
...
...
libiberty/maint-tool
View file @
98475c57
...
...
@@ -223,6 +223,14 @@ sub deps {
}
$mine
{
'config.h'
}
=
"config.h"
;
opendir
(
INC
,
$srcdir
);
while
(
$f
=
readdir
INC
)
{
next
unless
$f
=~
/\.h$/
;
$mine
{
$f
}
=
"\$(srcdir)/$f"
;
$deps
{
$f
}
=
join
(
' '
,
&
deps_for
(
"$srcdir/$f"
));
}
$mine
{
'config.h'
}
=
"config.h"
;
open
(
IN
,
"$srcdir/Makefile.in"
);
open
(
OUT
,
">$srcdir/Makefile.tmp"
);
while
(
<IN>
)
{
...
...
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