GNOME Bugzilla – Bug 726197
grilo should not ignore ${libdir} and hardcode lib64
Last modified: 2014-03-13 12:36:47 UTC
This code should be removed from grilo's configure.ac: if test "${libdir}" = '${exec_prefix}/lib'; then case `uname -m` in x86_64|ppc64|powerpc64) libdir='${exec_prefix}/lib64' ;; *) libdir='${exec_prefix}/lib' ;; esac fi If someone wants to install in lib64 then they will give this in --libdir. If they give 'lib' in --libdir then it is not correct to ignore this. Most systems don't use lib64, and jhbuild is currently moving away from it as well.
Created attachment 271643 [details] [review] configure: don't hardcode lib64 If the user wants libraries installed in a directory called lib64 then they will specify this via the --libdir option.
Review of attachment 271643 [details] [review]: Looks fine.
Attachment 271643 [details] pushed as 1d806ab - configure: don't hardcode lib64