You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
735 B
22 lines
735 B
# This is the config.site file to satisfy FHS defaults when installing below |
|
# /usr. |
|
# |
|
# You may override this file by your config.site using the CONFIG_SITE env |
|
# variable. |
|
# |
|
# Note: This file includes also RHEL/Fedora fix for installing libraries into |
|
# "/lib/lib64" on 64bit systems. |
|
|
|
if test "$prefix" = /usr; then |
|
test "$sysconfdir" = '${prefix}/etc' && sysconfdir=/etc |
|
test "$sharedstatedir" = '${prefix}/com' && sharedstatedir=/var |
|
test "$localstatedir" = '${prefix}/var' && localstatedir=/var |
|
|
|
ARCH=`uname -m` |
|
for i in x86_64 ppc64 s390x aarch64; do |
|
if test $ARCH = $i; then |
|
test "$libdir" = '${exec_prefix}/lib' && libdir='${exec_prefix}/lib64' |
|
break |
|
fi |
|
done |
|
fi
|
|
|