From 0a06bccf23f2b2d040094d0c2f084b7a7142867c Mon Sep 17 00:00:00 2001 From: Daniel Caujolle-Bert Date: Fri, 20 Sep 2002 15:05:59 +0000 Subject: Fix libtool problem. automake 1.5 and libtool 1.4.2 seems hate their child called AS. Don't use standard AM_PROG_AS, but our modified version (!x86 builder, report failure please). CVS patchset: 2721 CVS date: 2002/09/20 15:05:59 --- m4/as.m4 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'm4') diff --git a/m4/as.m4 b/m4/as.m4 index 452db39c5..276cac93c 100644 --- a/m4/as.m4 +++ b/m4/as.m4 @@ -3,15 +3,15 @@ dnl Daniel Caujolle-Bert # Figure out how to run the assembler. -# AM_PROG_AS -AC_DEFUN([AM_PROG_AS], +# AM_PROG_AS_MOD +AC_DEFUN([AM_PROG_AS_MOD], [# By default we simply use the C compiler to build assembly code. AC_REQUIRE([AC_PROG_CC]) -: ${AS='$(CC)'} +: ${AS='$CC'} # Set ASFLAGS if not already set. : ${ASFLAGS='$(CFLAGS)'} # Set ASCOMPILE if not already set. -if test $AS = '$''('CC')'; then +if test $AS = '$'CC; then : ${ASCOMPILE='$(AS) $(AM_ASFLAGS) $(ASFLAGS) -c'} else : ${ASCOMPILE='$(AS) $(AM_ASFLAGS) $(ASFLAGS)'} -- cgit v1.2.3