Skip to content
Snippets Groups Projects
Commit 07e2d19d authored by Fons Rademakers's avatar Fons Rademakers
Browse files

From Peter Hristov:

fix in detection of libraries on 64 bit machines.


git-svn-id: http://root.cern.ch/svn/root/trunk@12263 27541ba8-7e3a-0410-8455-c3a389f83636
parent b46cc82f
No related branches found
No related tags found
No related merge requests found
...@@ -241,19 +241,19 @@ check_library() { ...@@ -241,19 +241,19 @@ check_library() {
for i in $libdirs ; do for i in $libdirs ; do
# look first in the lib32 directories # look first in the lib32 directories
if test "x$checklib32" = "xyes" ; then if test "x$checklib32" = "xyes" ; then
i32=`echo $i | sed 's|lib*|lib32|'` i32=`echo $i | sed 's|lib|lib32|'`
#i="$i32 $i" #i="$i32 $i"
i="$i32" i="$i32"
fi fi
# look first in the lib64 directories # look first in the lib64 directories
if test "x$checklib64" = "xyes" ; then if test "x$checklib64" = "xyes" ; then
i64=`echo $i | sed 's|lib*|lib64|'` i64=`echo $i | sed 's|lib|lib64|'`
#i="$i64 $i" #i="$i64 $i"
i="$i64" i="$i64"
fi fi
# look first in the hpux64 directories # look first in the hpux64 directories
if test "x$checkhpux64" = "xyes" ; then if test "x$checkhpux64" = "xyes" ; then
i64=`echo $i | sed 's|\(lib*\)|\1/hpux64|'` i64=`echo $i | sed 's|\(lib\)|\1/hpux64|'`
#i="$i64 $i" #i="$i64 $i"
i="$i64" i="$i64"
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment