From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20040 invoked by alias); 21 Nov 2004 23:37:11 -0000 Mailing-List: contact binutils-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sources.redhat.com Received: (qmail 20020 invoked from network); 21 Nov 2004 23:37:08 -0000 Received: from unknown (HELO relais.videotron.ca) (24.201.245.36) by sourceware.org with SMTP; 21 Nov 2004 23:37:08 -0000 Received: from SecondFloor.Utopia.hai ([66.130.29.195]) by VL-MO-MR010.ip.videotron.ca (iPlanet Messaging Server 5.2 HotFix 1.21 (built Sep 8 2003)) with ESMTP id <0I7J00BVWYXW3A@VL-MO-MR010.ip.videotron.ca> for binutils@sources.redhat.com; Sun, 21 Nov 2004 18:37:08 -0500 (EST) Date: Sun, 21 Nov 2004 23:37:00 -0000 From: Robert Connolly Subject: ylwrap autofoo fun To: binutils@sources.redhat.com Message-id: <200411211837.50279.robert@linuxfromscratch.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT Content-disposition: inline User-Agent: KMail/1.7 X-SW-Source: 2004-11/txt/msg00301.txt.bz2 When I patch ld/{configure.in,Makefile.am} I run: cd ld && aclocal -I ../config && autoconf && autoheader && automake -a after, and all seems well. However what was previously: $(SHELL) $(YLWRAP) "$(YACC)" $< y.tab.c $*.c y.tab.h $*.h -- $(AM_YFLAGS) $(YFLAGS) becomes: $(SHELL) $(YLWRAP) $< y.tab.c $@ y.tab.h $*.h y.output $*.output -- $(YACCCOMPILE) in ld/Makefile, and this of course causes a failure to make because things are out of order. What is the correct way to reconfigure? robert