From 08be3bd93b14fb4470ebfab45928d04925c1785b Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Thu, 11 Aug 2011 14:22:50 +0200 Subject: [PATCH] pyges: Do not try to build the bindings if no python found --- bindings/makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bindings/makefile.am b/bindings/makefile.am index 96fcb3e253..65cca14176 100644 --- a/bindings/makefile.am +++ b/bindings/makefile.am @@ -1 +1,5 @@ -SUBDIRS = python +SUBDIRS = + +if WITH_PYTHON + SUBDIRS += python +endif