ci: Attempt to disable doxygen warnings of dependencies

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

Change-Id: I4640cb5b91d54641e8e5b2f096c3bca49bfff60e
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index 755ff1c..3c60996 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -12,6 +12,7 @@
 build_dep() {
 	project="$1"
 	branch="$2"
+	cfg="$3"
 	set +x
 	echo
 	echo
@@ -32,11 +33,11 @@
 	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"