From c4ee63a99436f802c71e75d76fb0e19e3c495254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Timm?= Date: Wed, 8 Sep 2004 15:55:34 +0000 Subject: [PATCH] INTEGRATION: CWS ooo20040704 (1.5.16); FILE MERGED 2004/06/28 12:53:48 cmc 1.5.16.1: #i30801# allow using system libs if possible --- pyuno/zipcore/makefile.mk | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyuno/zipcore/makefile.mk b/pyuno/zipcore/makefile.mk index 4a054b9f2ddb..ec9bce0ca94d 100755 --- a/pyuno/zipcore/makefile.mk +++ b/pyuno/zipcore/makefile.mk @@ -2,6 +2,12 @@ PRJNAME=pyuno PRJ=.. .INCLUDE : settings.mk + +.IF "$(SYSTEM_PYTHON)" == "YES" +systempython: + @echo "Not building python-core because system python is being used" +.ELSE + .INCLUDE : pyversion.mk PYDIRNAME=python-core-$(PYVERSION) @@ -51,3 +57,5 @@ $(DESTROOT)$/bin$/python$(EXECPOST) : $(SOLARBINDIR)$/python$(EXECPOST) .ENDIF chmod +x $@ .ENDIF + +.ENDIF