From d165737ee285277a4704ccf320b21683f9642874 Mon Sep 17 00:00:00 2001 From: Torben Hohn Date: Tue, 28 Sep 2010 15:24:40 +0200 Subject: [PATCH] upps fix uname -a to uname -m --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index f5a8327..a7bdb79 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -57,7 +57,7 @@ else run_versioned automake "$VERSION" --copy --foreign --add-missing if test "x$NOCONFIGURE" = "x"; then - if [ -f /etc/fedora-release -a `uname -a` = x86_64 ] ; then + if [ -f /etc/fedora-release -a `uname -m` = x86_64 ] ; then CFLAGS="-g -O0" ./configure --prefix=/usr --libdir=/usr/lib64 --sysconfdir=/etc --localstatedir=/var "$@" else CFLAGS="-g -O0" ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var "$@" -- 2.11.4.GIT