Blame SOURCES/config.site

6b8684
# This is the config.site file to satisfy FHS defaults when installing below
6b8684
# /usr.
6b8684
#
6b8684
# You may override this file by your config.site using the CONFIG_SITE env
6b8684
# variable.
6b8684
#
6b8684
# Note: This file includes also RHEL/Fedora fix for installing libraries into
6b8684
# "/lib/lib64" on 64bit systems.
6b8684
6b8684
if test "$prefix" = /usr; then
6b8684
    test "$sysconfdir" = '${prefix}/etc' && sysconfdir=/etc
6b8684
    test "$sharedstatedir" = '${prefix}/com' && sharedstatedir=/var
6b8684
    test "$localstatedir" = '${prefix}/var' && localstatedir=/var
6b8684
6b8684
    ARCH=`uname -m`
6b8684
    for i in x86_64 ppc64 s390x aarch64; do
6b8684
        if test $ARCH = $i; then
6b8684
            test "$libdir" = '${exec_prefix}/lib' && libdir='${exec_prefix}/lib64'
6b8684
            break
6b8684
        fi
6b8684
    done
6b8684
fi