Code

configure.in: Hint towards the CFLAGS instead of using $CC.
authorFlorian Forster <octo@huhu.verplant.org>
Sat, 9 May 2009 09:08:48 +0000 (11:08 +0200)
committerFlorian Forster <octo@huhu.verplant.org>
Sat, 9 May 2009 09:08:48 +0000 (11:08 +0200)
configure.in

index e377fe99aa472ccbb59faac640262d5dd396d2b0..2c51d21acf45f7db7211cbe2d2b2942cce3360c6 100644 (file)
@@ -262,9 +262,9 @@ then
        hint_64=""
        if test "x$GCC" = "xyes"
        then
-               hint_64="CC='gcc -m64'"
+               hint_64="CFLAGS='-m64'"
        else
-               hint_64="CC='cc -xarch=v9'"
+               hint_64="CFLAGS='-xarch=v9'"
        fi
        AC_MSG_NOTICE([Solaris detected and sys/swap.h not usable. Try building a 64-bit binary ($hint_64 ./configure).])
 fi