Commit 684b1043 authored by Michal Berger's avatar Michal Berger Committed by Tomasz Zawadzki
Browse files

scripts/pkgdep: Disable liburing installation on FreeBSD

parent 3b102b4f
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -14,3 +14,9 @@ if [[ $INSTALL_DOCS == "true" ]]; then
	# Additional dependencies for building docs
	pkg install -y doxygen mscgen graphviz
fi

if [[ $INSTALL_LIBURING == "true" ]]; then
	printf 'liburing is not supported on %s, disabling\n' \
		"$(freebsd-version)"
	INSTALL_LIBURING=false
fi