diff options
author | Maneesh Soni <maneesh@in.ibm.com> | 2006-07-27 09:51:48 -0600 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2006-07-27 09:51:48 -0600 |
commit | 2bff98d6415f6274666ab7d57faa464c1c9587ec (patch) | |
tree | 596985408b788eb184d937c7e4d8dd912c9618a4 /configure | |
parent | 80ec3db380dec6156a47f3b719929f730b9d7c98 (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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |