From b3346ecb27f36a16c256fa584cafdfd25168eb9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Thu, 21 Oct 2004 17:57:09 +0200 Subject: [PATCH] Use the same invocation of nasm as the Makefile uses. Rev: src/modules/Image/configure.in:1.30 --- src/modules/Image/configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/Image/configure.in b/src/modules/Image/configure.in index a2a92447b6..2be13951cc 100644 --- a/src/modules/Image/configure.in +++ b/src/modules/Image/configure.in @@ -1,4 +1,4 @@ -# $Id: configure.in,v 1.29 2004/10/21 15:55:22 grubba Exp $ +# $Id: configure.in,v 1.30 2004/10/21 15:57:09 grubba Exp $ AC_INIT(image.c) AC_CONFIG_HEADER(image_machine.h) @@ -22,7 +22,7 @@ AC_MSG_CHECKING( [if nasm can be used] ) if test "x$with_machine_code" = "xno" ; then AC_MSG_RESULT(no) else - if nasm -f elf -o assembly.o $srcdir/assembly.s ; then + if nasm -f elf -g -o assembly.o $srcdir/assembly.s ; then if test "`uname -m`" = "ia64"; then # nasm/ia64 can compile ia32 code... AC_MSG_RESULT([yes, but we are on an IA64 machine]) -- GitLab