From: ptv Date: Tue, 10 Oct 2006 11:44:35 +0000 (+0000) Subject: check that PyConsole is disabled before add python libraries to LIB flags X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=390c7fa7880c3c19ad1dbce66c0c952231bfe887;p=modules%2Fgui.git check that PyConsole is disabled before add python libraries to LIB flags --- 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