aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2016-07-27 20:27:02 +0800
committerHolger Freyther <holger@freyther.de>2016-08-15 17:39:28 +0000
commit91dfa86c18a522cf108245d6c6bdc89f0835a533 (patch)
tree7e7063318a7f145e4fa29ca489442c1e5bfc03ed /contrib
parent1f6a9ba7e569990e58df1003e7e611691bf95303 (diff)
ci: Attempt to disable doxygen warnings of dependencies
We do not want to see doxygen warnings when building the libosmocore dependency. Change-Id: I4640cb5b91d54641e8e5b2f096c3bca49bfff60e
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/jenkins.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index 755ff1c12..3c60996dc 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -12,6 +12,7 @@ rm -rf "$inst"
build_dep() {
project="$1"
branch="$2"
+ cfg="$3"
set +x
echo
echo
@@ -32,11 +33,11 @@ build_dep() {
fi
git rev-parse HEAD
autoreconf --install --force
- ./configure --prefix="$inst"
+ ./configure --prefix="$inst" $cfg
$MAKE $PARALLEL_MAKE install
}
-build_dep libosmocore
+build_dep libosmocore "" ac_cv_path_DOXYGEN=false
# All below builds want this PKG_CONFIG_PATH
export PKG_CONFIG_PATH="$inst/lib/pkgconfig:$PKG_CONFIG_PATH"