From 390c7fa7880c3c19ad1dbce66c0c952231bfe887 Mon Sep 17 00:00:00 2001 From: ptv Date: Tue, 10 Oct 2006 11:44:35 +0000 Subject: [PATCH] check that PyConsole is disabled before add python libraries to LIB flags --- src/SUITApp/Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/SUITApp/Makefile.in b/src/SUITApp/Makefile.in index 1265308b4..0126f4d59 100644 --- a/src/SUITApp/Makefile.in +++ b/src/SUITApp/Makefile.in @@ -51,7 +51,10 @@ CPPFLAGS+=$(QT_INCLUDES) $(PYTHON_INCLUDES) LDFLAGS+=$(QT_MT_LIBS) -LIBS+= -Xlinker -export-dynamic $(PYTHON_LIBS) +LIBS+= -Xlinker -export-dynamic +ifneq ($(DISABLE_PYCONSOLE),yes) + LIBS+= $(PYTHON_LIBS) +endif LIBS+= -lsuit -lqtx LIBSFORBIN+= -lsuit -lqtx -- 2.39.2