Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
83b344db
Commit
83b344db
authored
Jan 14, 2014
by
Hakan Ardo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make the MAN_SUBDIR setting overide the name of the directry the man pages are placed in.
parent
c5bc9fc8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
6 deletions
+16
-6
config.xml
src/config.xml
+1
-1
mangen.cpp
src/mangen.cpp
+15
-5
No files found.
src/config.xml
View file @
83b344db
...
...
@@ -2689,7 +2689,7 @@ EXTRA_PACKAGES=times
]]>
</docs>
</option>
<option
type=
'string'
id=
'MAN_SUBDIR'
format=
'string'
defval=
'
man3
'
depends=
'GENERATE_MAN'
>
<option
type=
'string'
id=
'MAN_SUBDIR'
format=
'string'
defval=
''
depends=
'GENERATE_MAN'
>
<docs>
<![CDATA[
The \c MAN_SUBDIR tag determines the name of the directory created within \c MAN_OUTPUT
...
...
src/mangen.cpp
View file @
83b344db
...
...
@@ -64,9 +64,19 @@ static QCString getExtension()
return
ext
;
}
static
QCString
getSubdir
()
{
QCString
dir
=
Config_getString
(
"MAN_SUBDIR"
);
if
(
dir
.
isEmpty
())
{
dir
=
"man"
+
getExtension
();
}
return
dir
;
}
ManGenerator
::
ManGenerator
()
:
OutputGenerator
()
{
dir
=
Config_getString
(
"MAN_OUTPUT"
)
+
"/man"
+
getExtension
();
dir
=
Config_getString
(
"MAN_OUTPUT"
)
+
"/"
+
getSubdir
();
firstCol
=
TRUE
;
paragraph
=
TRUE
;
col
=
0
;
...
...
@@ -106,10 +116,10 @@ void ManGenerator::init()
err
(
"Could not create output directory %s
\n
"
,
manOutput
.
data
());
exit
(
1
);
}
d
.
setPath
(
manOutput
+
"/man"
+
ext
);
if
(
!
d
.
exists
()
&&
!
d
.
mkdir
(
manOutput
+
"/man"
+
ext
))
d
.
setPath
(
manOutput
+
"/"
+
getSubdir
()
);
if
(
!
d
.
exists
()
&&
!
d
.
mkdir
(
manOutput
+
"/"
+
getSubdir
()
))
{
err
(
"Could not create output directory %s/
man%s
\n
"
,
manOutput
.
data
(),
ext
.
data
());
err
(
"Could not create output directory %s/
%s
\n
"
,
manOutput
.
data
(),
getSubdir
()
.
data
());
exit
(
1
);
}
createSubDirs
(
d
);
...
...
@@ -445,7 +455,7 @@ void ManGenerator::startDoxyAnchor(const char *,const char *manName,
FTextStream
linkstream
;
linkstream
.
setDevice
(
&
linkfile
);
//linkstream.setEncoding(QTextStream::UnicodeUTF8);
linkstream
<<
".so
man"
<<
getExtension
()
<<
"/"
<<
buildFileName
(
manName
)
<<
endl
;
linkstream
<<
".so
"
<<
getSubdir
()
<<
"/"
<<
buildFileName
(
manName
)
<<
endl
;
}
}
linkfile
.
close
();
...
...
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