ci: Attempt to disable doxygen warnings of dependencies

We do not want to see doxygen warnings when building the
libosmocore dependency.

Change-Id: I4640cb5b91d54641e8e5b2f096c3bca49bfff60e
This commit is contained in:
Holger Hans Peter Freyther 2016-07-27 20:27:02 +08:00 committed by Holger Freyther
parent 1f6a9ba7e5
commit 91dfa86c18
1 changed files with 3 additions and 2 deletions

View File

@ -12,6 +12,7 @@ rm -rf "$inst"
build_dep() { build_dep() {
project="$1" project="$1"
branch="$2" branch="$2"
cfg="$3"
set +x set +x
echo echo
echo echo
@ -32,11 +33,11 @@ build_dep() {
fi fi
git rev-parse HEAD git rev-parse HEAD
autoreconf --install --force autoreconf --install --force
./configure --prefix="$inst" ./configure --prefix="$inst" $cfg
$MAKE $PARALLEL_MAKE install $MAKE $PARALLEL_MAKE install
} }
build_dep libosmocore build_dep libosmocore "" ac_cv_path_DOXYGEN=false
# All below builds want this PKG_CONFIG_PATH # All below builds want this PKG_CONFIG_PATH
export PKG_CONFIG_PATH="$inst/lib/pkgconfig:$PKG_CONFIG_PATH" export PKG_CONFIG_PATH="$inst/lib/pkgconfig:$PKG_CONFIG_PATH"