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
c777a6de
Commit
c777a6de
authored
Jun 03, 2001
by
Gerald Pfeifer
Committed by
Gerald Pfeifer
Jun 03, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* doc/install.texi2html: New script.
From-SVN: r42826
parent
096c33c3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
0 deletions
+34
-0
gcc/ChangeLog
+4
-0
gcc/doc/install.texi2html
+30
-0
No files found.
gcc/ChangeLog
View file @
c777a6de
2001
-
06
-
03
Gerald
Pfeifer
<
pfeifer
@dbai
.
tuwien
.
ac
.
at
>
*
doc
/
install
.
texi2html
:
New
script
.
2001
-
06
-
03
David
Edelsohn
<
edelsohn
@gnu
.
org
>
*
doc
/
install
.
texi
:
Update
AIX
information
again
.
...
...
gcc/doc/install.texi2html
0 → 100755
View file @
c777a6de
#!/bin/sh
#
# Convert the GCC install documentation from texinfo format to HTML.
#
# $SOURCEDIR and $DESTDIR, resp., refer to the directory containing
# the texinfo source and the directory to put the HTML version in.
#
# (C) 2001 Free Software Foundation
# Originally by Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>, June 2001.
#
# This script is Free Software, and it can be copied, distributed and
# modified as defined in the GNU General Public License. A copy of
# its license can be downloaded from http://www.gnu.org/copyleft/gpl.html
SOURCEDIR
=
${
SOURCEDIR
-.
}
DESTDIR
=
${
DESTDIR
-HTML
}
MAKEINFO
=
makeinfo
if
[
!
-d
$DESTDIR
]
;
then
mkdir
-p
$DESTDIR
fi
for
x
in
index.html specific.html download.html configure.html
\
build.html test.html finalinstall.html binaries.html
do
define
=
`
echo
$x
| sed
-e
's/\.//g'
`
echo
"define =
$define
"
$MAKEINFO
$SOURCEDIR
/install.texi
--html
-D
$define
-o
$DESTDIR
/
$x
done
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