Date: Thu, 6 Jul 2000 19:18:39 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Hans-Bernhard Broeker cc: djgpp AT delorie DOT com Subject: Re: Possible make breakage In-Reply-To: <8k1pae$am0$1@nets3.rz.RWTH-Aachen.DE> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 6 Jul 2000, Hans-Bernhard Broeker wrote: > "Tim \"Zastai\" Van Holder" wrote: > > > .c.o: > > source='$<' object='$@' libtool=no \ > > depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \ > > $(CCDEPMODE) $(depcomp) \ > > $(COMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$< > > AFAICS, the most probable problem with this is that 'make' did not > recognize that it needs to invoke a shell to execute it, for lack of > any of the 'telltale' signs (no ';', no recognized Sh-only internal > command, no '(', ')' around the command). One of the signs used by Make is the `=' character on the command line before any command name. That's what should have worked here.