summaryrefslogtreecommitdiff
path: root/pyuno/zipcore/makefile.mk
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-09-08 15:55:34 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-09-08 15:55:34 +0000
commitc4ee63a99436f802c71e75d76fb0e19e3c495254 (patch)
treee3607e02269f26664003ab03fb8dd5b2df133785 /pyuno/zipcore/makefile.mk
parent485cc830349af1d2b4d05cdb9f99f44da8f1d780 (diff)
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
Diffstat (limited to 'pyuno/zipcore/makefile.mk')
-rwxr-xr-xpyuno/zipcore/makefile.mk8
1 files changed, 8 insertions, 0 deletions
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