From: Marco van Wieringen Date: Mon, 19 Oct 2009 19:54:56 +0000 (+0200) Subject: Don't use uname -i but uname -p X-Git-Tag: Release-7.0.0~2599^2~8^2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=077d33d61d4a9626b3b48fd2ae6b8bfc08a39867;p=bacula%2Fbacula Don't use uname -i but uname -p --- diff --git a/bacula/autoconf/configure.in b/bacula/autoconf/configure.in index 2e66da1b30..932888cc32 100644 --- a/bacula/autoconf/configure.in +++ b/bacula/autoconf/configure.in @@ -226,7 +226,7 @@ dnl If either --prefix or --includedir is set, we leave includedir dnl alone except to eval it dnl ------------------------------------------------------------------ os_name=`uname -s` -os_hw_platform=`uname -i` +os_processor=`uname -p` if test x${prefix} = xNONE ; then if test `eval echo ${sysconfdir}` = NONE/etc ; then sysconfdir=/etc/bacula @@ -235,7 +235,7 @@ if test x${prefix} = xNONE ; then if test `eval echo ${libdir}` = NONE/lib ; then case ${os_name} in Linux) - case ${os_hw_platform} in + case ${os_processor} in x86_64) libdir=/usr/lib64 ;;