Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
ssu
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
mer-core
ssu
Commits
e4678e90
Commit
e4678e90
authored
Sep 18, 2014
by
Aard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Skip building Doxygen docs if .nodocs is present
parent
807f4027
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
.gitignore
.gitignore
+1
-0
rpm/ssu.spec
rpm/ssu.spec
+5
-1
No files found.
.gitignore
View file @
e4678e90
...
...
@@ -9,3 +9,4 @@ doc/latex
/ssud/ssuadaptor.h
/rndssucli/ssuproxy.cpp
/rndssucli/ssuproxy.h
/.nodocs
rpm/ssu.spec
View file @
e4678e90
...
...
@@ -141,7 +141,11 @@ Group: Documentation
mkdir -p build && cd build
%qmake5 DEFINES+='TARGET_ARCH=\\\"\"%{_target_cpu}\"\\\"' -recursive ..
make %{?_smp_mflags}
cd .. && doxygen doc/Doxyfile
if [ -f ../.nodocs ]; then
echo "Skip building documentation"
else
cd .. && doxygen doc/Doxyfile
fi
%install
...
...
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