aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authormontellese <montellese@xbmc.org>2015-07-14 21:17:02 +0200
committermontellese <montellese@xbmc.org>2015-07-15 10:37:23 +0200
commitd6f40ae29d8fe88a16c10e15cd0e8bfd36caa9ff (patch)
tree1ab658443c20856459358b3f56d392da25687a9c /configure.ac
parent15faee53475e9093b8f810a04e7297a5599aae8a (diff)
[configure.ac] only generate xbmc/network/httprequesthandler/python/Makefile if webserver is enabled
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 71883d23e5..1fa050ee5d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2475,7 +2475,6 @@ OUTPUT_FILES="Makefile \
xbmc/input/linux/Makefile \
xbmc/interfaces/Makefile \
xbmc/network/Makefile \
- xbmc/network/httprequesthandler/python/Makefile \
xbmc/network/upnp/Makefile \
lib/libexif/Makefile \
lib/libhdhomerun/Makefile \
@@ -2534,6 +2533,10 @@ OUTPUT_FILES="Makefile \
tools/android/packaging/xbmc/strings.xml \
addons/xbmc.addon/addon.xml"
+if test "$use_webserver" = "yes"; then
+OUTPUT_FILES="$OUTPUT_FILES xbmc/network/httprequesthandler/python/Makefile"
+fi
+
if test "$use_wayland" = "yes"; then
OUTPUT_FILES="$OUTPUT_FILES xbmc/windowing/tests/wayland/Makefile"
fi