summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2015-05-26 16:55:55 -0230
committerDwayne Boone <dwayne@zeroc.com>2015-05-26 16:55:55 -0230
commite3b22dd035a20c9ca33250bd34eca8b9e23b3316 (patch)
treeef63a71a3a47c44b945b0acd4e41c5b8fe213b85 /python
parentICE-6524 added string converter to the statically registered plugins (diff)
downloadice-e3b22dd035a20c9ca33250bd34eca8b9e23b3316.tar.bz2
ice-e3b22dd035a20c9ca33250bd34eca8b9e23b3316.tar.xz
ice-e3b22dd035a20c9ca33250bd34eca8b9e23b3316.zip
Fix location of slice2py for Linux bindist build
Diffstat (limited to 'python')
-rw-r--r--python/config/Make.rules6
1 files changed, 5 insertions, 1 deletions
diff --git a/python/config/Make.rules b/python/config/Make.rules
index 39fcd312dc3..a3a2e17251c 100644
--- a/python/config/Make.rules
+++ b/python/config/Make.rules
@@ -148,7 +148,11 @@ ifdef ice_src_dist
SLICEPARSERLIB = $(ice_cpp_dir)/$(lib64subdir)/$(call mklibfilename,Slice,$(VERSION))
endif
else
- SLICE2PY = /usr/local/bin/slice2py
+ ifeq ($(UNAME),Darwin)
+ SLICE2PY = /usr/local/bin/slice2py
+ else
+ SLICE2PY = /usr/bin/slice2py
+ endif
SLICEPARSERLIB =
endif