diff options
author | montellese <montellese@xbmc.org> | 2015-07-14 21:17:02 +0200 |
---|---|---|
committer | montellese <montellese@xbmc.org> | 2015-07-14 21:17:23 +0200 |
commit | 691b579a124bff9f408f2a8fde0924032084cf26 (patch) | |
tree | 9f222d648728a3cdb4a1023b056f33aae90a6368 /configure.ac | |
parent | 0ab8a08f53c8879d5335af94a02b271f89616257 (diff) |
[configure.ac] only generate xbmc/network/httprequesthandler/python/Makefile if webserver is enabled
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f8e5459add..fffafae203 100644 --- a/configure.ac +++ b/configure.ac @@ -2476,7 +2476,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/cximage-6.0/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 |