summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorManeesh Soni <maneesh@in.ibm.com>2006-07-27 09:51:48 -0600
committerEric W. Biederman <ebiederm@xmission.com>2006-07-27 09:51:48 -0600
commit2bff98d6415f6274666ab7d57faa464c1c9587ec (patch)
tree596985408b788eb184d937c7e4d8dd912c9618a4 /configure
parent80ec3db380dec6156a47f3b719929f730b9d7c98 (diff)
ppc64 fix compiler flags
o This fixes the -m64 flag setting in configure script to avoid -m64 flags for other architectures. Signed-off-by: Maneesh Soni <maneesh@in.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 0c1d192..5c68c1b 100755
--- a/configure
+++ b/configure
@@ -1428,7 +1428,7 @@ if test "${with_gamecube+set}" = set; then
fi;
# Check whether ppc64. Add -m64 for building 64-bit binary
-if test "$ARCH"=ppc64; then
+if test "$ARCH" = ppc64; then
EXTRA_CFLAGS="$EXTRA_CFLAGS -m64"
fi;