summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2014-11-28 15:34:17 +0100
committerJose <jose@zeroc.com>2014-11-28 15:34:17 +0100
commit47e05ffb78bb4542bb1714afc7d6439f1ba2475e (patch)
tree42bc6de9433213722c0ca688e802aff637ad8bd3 /cpp
parentDemoscript fixes, add ThirdParty bin to path when required (diff)
downloadice-47e05ffb78bb4542bb1714afc7d6439f1ba2475e.tar.bz2
ice-47e05ffb78bb4542bb1714afc7d6439f1ba2475e.tar.xz
ice-47e05ffb78bb4542bb1714afc7d6439f1ba2475e.zip
RPATH build fixes
Diffstat (limited to 'cpp')
-rw-r--r--cpp/config/Make.rules.Darwin16
1 files changed, 8 insertions, 8 deletions
diff --git a/cpp/config/Make.rules.Darwin b/cpp/config/Make.rules.Darwin
index 4df0b1d46df..4b99e81a0a7 100644
--- a/cpp/config/Make.rules.Darwin
+++ b/cpp/config/Make.rules.Darwin
@@ -55,26 +55,26 @@ ifeq ($(embedded_runpath),yes)
# If embedded_runpath_prefix is set it has preference
#
ifneq ($(embedded_runpath_prefix),)
- RPATH_DIR = $(embedded_runpath_prefix)
+ RPATH_DIR = $(embedded_runpath_prefix)
endif
ifeq ($(RPATH_DIR),)
- ifdef ice_src_dist
- RPATH_DIR = @loader_path/$(libdir)
- else
- RPATH_DIR = $(ice_dir)/$(libsubdir)
- endif
+ ifdef ice_src_dist
+ RPATH_DIR = @loader_path/$(libdir)
+ else
+ RPATH_DIR = $(ice_dir)/$(libsubdir)
+ endif
endif
#
# Clear rpath setting when doing a system install
#
ifeq ($(ice_dir),/usr)
- RPATH_DIR =
+ RPATH_DIR =
endif
ifneq ($(RPATH_DIR),)
- LDEXEFLAGS = -Wl,-rpath,$(RPATH_DIR)
+ LDEXEFLAGS = -Wl,-rpath,$(RPATH_DIR)
endif
endif