From cc831a6be57a868cd36d15335eb0f65e77779c55 Mon Sep 17 00:00:00 2001 From: Ade Lee Date: Fri, 3 Jan 2014 11:41:02 -0500 Subject: Debian - replace arch specification uname -i returns "unknown" on a debian system. "arch" on the other hand works for fedora, rhel and debian. Replacing these for all packages except for the migration ones which will not be built on debian in any case. --- base/console/templates/pki_console_wrapper | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'base/console') diff --git a/base/console/templates/pki_console_wrapper b/base/console/templates/pki_console_wrapper index cc9590697..31c4ea481 100755 --- a/base/console/templates/pki_console_wrapper +++ b/base/console/templates/pki_console_wrapper @@ -81,11 +81,11 @@ OS=`uname -s` ARCHITECTURE="" if [ "${OS}" = "Linux" ] ; then - ARCHITECTURE=`uname -i` + ARCHITECTURE=`arch` JAVA="java" JAVA_OPTIONS="" - if [ "${ARCHITECTURE}" = "i386" ] ; then + if [ "${ARCHITECTURE}" = "i686" ] ; then LD_LIBRARY_PATH=/usr/lib:/lib LD_LIBRARY_PATH=/usr/lib/jss:${LD_LIBRARY_PATH} export LD_LIBRARY_PATH -- cgit