This is the mail archive of the newlib@sources.redhat.com mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: libnosys/Makefile.in (LD, AS): Correct obsoleted suffix


Patch checked in. Thanks.

-- Jeff J.

Hans-Peter Nilsson wrote:
I can't immediately see how this is being used, but it's wrong
anyhow and so may cause confusion.

2005-01-16 Hans-Peter Nilsson <hp@axis.com>

	* libnosys/Makefile.in (LD, AS): Correct obsoleted suffix: Say
	as-new and ld-new, not as.new and ld.new.

Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/libgloss/libnosys/Makefile.in,v
retrieving revision 1.4
diff -c -p -u -p -r1.4 Makefile.in
cvs diff: conflicting specifications of output style
--- Makefile.in 28 Jun 2004 22:42:20 -0000 1.4
+++ Makefile.in 16 Jan 2005 13:49:36 -0000
@@ -44,15 +44,15 @@ SHELL = /bin/sh
CC = @CC@
#AS = @AS@
-AS = `if [ -f ${objroot}/../gas/as.new ] ; \
- then echo ${objroot}/../gas/as.new ; \
+AS = `if [ -f ${objroot}/../gas/as-new ] ; \
+ then echo ${objroot}/../gas/as-new ; \
else echo as ; fi`
AR = @AR@
#LD = @LD@
-LD = `if [ -f ${objroot}/../ld/ld.new ] ; \
- then echo ${objroot}/../ld/ld.new ; \
+LD = `if [ -f ${objroot}/../ld/ld-new ] ; \
+ then echo ${objroot}/../ld/ld-new ; \
else echo ld ; fi`
RANLIB = @RANLIB@


brgds, H-P


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]