From: Doug Goldstein Date: Fri, 15 Jan 2016 17:39:40 +0000 (-0600) Subject: tools: make FLASK utils build unconditional X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~1954 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a942a6f4ca64c023bec072f1d8d4e1d637815eb1;p=xen.git tools: make FLASK utils build unconditional The flask utilities only have dependencies on libxc so there's no downside to always building it. Distros and projects based on Xen can put these in a different package to not install them for all users. Prior to this change FLASK_ENABLE needed to be set at the top level to build the utilities and the tools/configure script would build the FLASK policy by default, but only if the utilities were built. This change makes item 3 from http://lists.xenproject.org/archives/html/xen-devel/2016-01/msg01796.html a happen by default. CC: Ian Jackson CC: Stefano Stabellini CC: Ian Campbell CC: Wei Liu Signed-off-by: Doug Goldstein Reviewed-by: Andrew Cooper Acked-by: Ian Campbell --- diff --git a/tools/Makefile b/tools/Makefile index 9f74ac7b98..3f9289bcfa 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -5,7 +5,7 @@ SUBDIRS-y := SUBDIRS-y += include SUBDIRS-y += libs SUBDIRS-y += libxc -SUBDIRS-$(FLASK_ENABLE) += flask +SUBDIRS-y += flask SUBDIRS-y += xenstore SUBDIRS-y += misc SUBDIRS-y += examples