From 18a91228dc5687a92dcc0660807a24a0e0ba1915 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Wed, 1 Dec 2010 19:52:24 +0000 Subject: [PATCH] Fix the gLite 3.2 build. gSoap external 2.7.6b installs itself to lib/ instead of lib64/. --- org.glite.security.gsoap-plugin/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/org.glite.security.gsoap-plugin/Makefile b/org.glite.security.gsoap-plugin/Makefile index 33b3b6e..49dd394 100644 --- a/org.glite.security.gsoap-plugin/Makefile +++ b/org.glite.security.gsoap-plugin/Makefile @@ -95,7 +95,8 @@ ifeq (${lang},cxx) LINK_lang:=${LINKXX} endif -GSOAP_LIBS?=-L${gsoap_prefix}/${libdir} -lgsoap +gsoaplibdir=$(shell if test -d "${gsoap_prefix}/${libdir}"; then echo "${gsoap_prefix}/${libdir}"; else echo "${gsoap_prefix}/lib"; fi) +GSOAP_LIBS?=-L${gsoaplibdir} -lgsoap EX_NOTHRLIBS:=-L${stagedir}/${libdir} -lglite_security_gss_${nothrflavour} EX_THRLIBS:=-L${stagedir}/${libdir} -lglite_security_gss_${thrflavour} -- 1.8.2.3