Follow-up Comment #2, bug #20003 (project gnustep):

Wile I was to port sope/sogo to gnustep-make 2. I overhauled the configure
script regarding the library directory name detection, according to the FHS
standard, as I understood it. Below the code snippet, where I decide whether
it should go into lib or lib64. Also the BSD's do not have that lib64/lib woes
at all, at least OpenBSD I know of. 
I have to admit, I did not took a look into the patches, so don't know
whether you address this or not.

  UNAME=`uname`
  if [ "X${UNAME}" = "XLinux" ];then
    UNAME=`uname -p`
    if [ ${UNAME} = x86_64 -o ${UNAME} = sparc64 -o ${UNAME} = ppc64 ];then
      cfgwrite "CGS_LIBDIR_NAME:=lib64"
    else
      cfgwrite "CGS_LIBDIR_NAME:=lib"
    fi
  else
    cfgwrite "CGS_LIBDIR_NAME:=lib"
  fi



    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?20003>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/



_______________________________________________
Bug-gnustep mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-gnustep

Reply via email to