diff options
author | Jose <jose@zeroc.com> | 2014-10-24 20:56:42 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-10-24 20:56:42 +0200 |
commit | aa93dabf90667a42ae99bb2c2837516fa8f2741a (patch) | |
tree | 452433d77eef34eb0d85fb7f86872b2467aa3b6d /cpp/src/IceBox | |
parent | ICE-5776 java build failure on RHEL (diff) | |
download | ice-aa93dabf90667a42ae99bb2c2837516fa8f2741a.tar.bz2 ice-aa93dabf90667a42ae99bb2c2837516fa8f2741a.tar.xz ice-aa93dabf90667a42ae99bb2c2837516fa8f2741a.zip |
C++11 build updates
Diffstat (limited to 'cpp/src/IceBox')
-rw-r--r-- | cpp/src/IceBox/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceBox/Makefile b/cpp/src/IceBox/Makefile index dacb05eefa4..78c1709581a 100644 --- a/cpp/src/IceBox/Makefile +++ b/cpp/src/IceBox/Makefile @@ -16,7 +16,7 @@ LIBNAME = $(call mklibname,IceBox) SERVER = $(bindir)/icebox ADMIN = $(bindir)/iceboxadmin -LIBTARGETS = $(call mklibtargets,$(libdir)/$(LIBFILENAME),$(libdir)/$(SONAME),$(libdir)/$(LIBNAME)) +LIBTARGETS = $(call mklibtargets,$(libdir)/$(LIBFILENAME),$(libdir)/$(SONAME),$(libdir)$(cpp11libdirsuffix)/$(LIBNAME)) TARGETS = $(LIBTARGETS) $(SERVER) $(ADMIN) SLICE_OBJS = IceBox.o @@ -58,9 +58,9 @@ $(libdir)/$(SONAME): $(libdir)/$(LIBFILENAME) rm -f $@ ln -s $(LIBFILENAME) $@ -$(libdir)/$(LIBNAME): $(libdir)/$(SONAME) +$(libdir)$(cpp11libdirsuffix)/$(LIBNAME): $(libdir)/$(SONAME) rm -f $@ - ln -s $(SONAME) $@ + ln -s $(cpp11sonamedir)$(SONAME) $@ $(SERVER): $(SOBJS) $(LIBTARGETS) rm -f $@ |