From: "Markus F.X.J. Oberhumer" Message-Id: <199711242143.WAA12984@wildsau.idv.uni-linz.ac.at> Subject: Re: alpha-971114: Makefiles revisited To: eliz AT is DOT elta DOT co DOT il (Eli Zaretskii) Date: Mon, 24 Nov 1997 22:43:23 +0100 (MET) Cc: broeker AT physik DOT rwth-aachen DOT de, dj AT delorie DOT com, djgpp-workers AT delorie DOT com In-Reply-To: from "Eli Zaretskii" at Nov 24, 97 01:21:26 pm Return-Read-To: k3040e4 AT wildsau DOT idv DOT uni-linz DOT ac DOT at MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk > > > > MY_LIBGCC_A = $(shell $(CROSS_GCC) -print-libgcc-file-name) > > > > Any ideas how to get around that? > > [...] > MY_LIBGCC_A = $(subst \,/,$(shell $(CROSS_GCC) -print-libgcc-file-name)) Be sure to use := instead of =, i.e. MY_LIBGCC_A := $(subst \,/,$(shell $(CROSS_GCC) -print-libgcc-file-name))