Message-ID: From: "Andris Pavenis" To: djgpp-workers AT delorie DOT com Date: Mon, 13 Jul 1998 22:06:32 +0300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Small patch for DJLSR202-980712 (src/makefile.inc) Precedence: bulk ere is small patch to improve lookup for libgcc.a and to get id of backslashes in patch of this library as make does not like them. (It didn't work for me without this) Andris -------------------------------------------------------------- *** makefile.in~ Sun Jul 12 18:26:22 1998 --- makefile.inc Mon Jul 13 21:57:46 1998 *************** *** 55,61 **** L = $(LIB)/libc.a ifeq ($(LIBGCCA),) ! LIBGCCA := $(shell $(CROSS_GCC) -print-file-name=libgcc.a) export LIBGCCA endif --- 55,61 ---- L = $(LIB)/libc.a ifeq ($(LIBGCCA),) ! LIBGCCA := $(shell $(CROSS_GCC) -print-file-name=libgcc.a | sed -e 's,\\,/,g') export LIBGCCA endif