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
53cdb27a
Commit
53cdb27a
authored
Nov 06, 2001
by
Hans-Peter Nilsson
Committed by
Hans-Peter Nilsson
Nov 06, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
From-SVN: r46802
parent
9f6682b7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
ChangeLog
+4
-0
Makefile.in
+5
-1
No files found.
ChangeLog
View file @
53cdb27a
2001-11-06 Hans-Peter Nilsson <hp@bitrange.com>
* Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
2001-11-05 Hans-Peter Nilsson <hp@bitrange.com>
2001-11-05 Hans-Peter Nilsson <hp@bitrange.com>
* config.sub: Import from master sources, rev 1.226.
* config.sub: Import from master sources, rev 1.226.
...
...
Makefile.in
View file @
53cdb27a
...
@@ -140,9 +140,13 @@ M4 = `if [ -f $$r/m4/m4 ] ; \
...
@@ -140,9 +140,13 @@ M4 = `if [ -f $$r/m4/m4 ] ; \
then
echo
$$
r/m4/m4
;
\
then
echo
$$
r/m4/m4
;
\
else
echo
${
DEFAULT_M4
}
;
fi
`
else
echo
${
DEFAULT_M4
}
;
fi
`
# For an installed makeinfo, we require it to be from texinfo 4 or
# higher, else we use the "missing" dummy.
MAKEINFO
=
`
if
[
-f
$$
r/texinfo/makeinfo/Makefile
]
;
\
MAKEINFO
=
`
if
[
-f
$$
r/texinfo/makeinfo/Makefile
]
;
\
then
echo
$$
r/texinfo/makeinfo/makeinfo
;
\
then
echo
$$
r/texinfo/makeinfo/makeinfo
;
\
else
echo
makeinfo
;
fi
`
else if
(
makeinfo
--version
\
| egrep
'texinfo[^0-9]*([1-3][0-9]|[4-9])'
)
>
/dev/null 2>&1
;
\
then
echo
makeinfo
;
else
echo
$$
s/missing makeinfo
;
fi
;
fi
`
# This just becomes part of the MAKEINFO definition passed down to
# This just becomes part of the MAKEINFO definition passed down to
# sub-makes. It lets flags be given on the command line while still
# sub-makes. It lets flags be given on the command line while still
...
...
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