Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Leibner
dune-common
Commits
622618cc
Commit
622618cc
authored
15 years ago
by
Christian Engwer
Browse files
Options
Downloads
Patches
Plain Diff
don't add the global style when generating initial Doxylocal
[[Imported from SVN: r5698]]
parent
f7fb83df
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/dunedoxynize
+18
-1
18 additions, 1 deletion
bin/dunedoxynize
with
18 additions
and
1 deletion
bin/dunedoxynize
+
18
−
1
View file @
622618cc
...
...
@@ -103,6 +103,19 @@ generate_doxyout()
echo
" ... done"
}
generate_doxylocal
()
{
echo
"Generating
$DOXYOUT
from "
for
DOXY
in
Doxyfile.in Doxyfile
;
do
if
[
-f
"
$1
/
$DOXYDIR
/
$DOXY
"
]
;
then
echo
"
`
get_module_name .
`
$DOXY
"
parse_doxylocal
.
$DOXY
>
$DOXYOUT
break
fi
done
echo
" ... done"
}
# make sure we are in dune module
if
!
[
-f
dune.module
]
;
then
echo
"Error: dunedoxynize must be called from the top_srcdir of your module"
...
...
@@ -147,4 +160,8 @@ if ! (test_doxylocal "${@:-.}" || [ $# -eq 0 ]); then
exit
1
fi
generate_doxyout
"
${
@
:-
.
}
"
if
[
"
`
basename
$DOXYOUT
`
"
=
"Doxylocal"
]
;
then
generate_doxylocal
"
${
@
:-
.
}
"
else
generate_doxyout
"
${
@
:-
.
}
"
fi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment