From 7a01d046d4c331f7871b3c219730fe7f0d9fb3e3 Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Tue, 18 Jan 2005 19:00:26 +0000 Subject: [PATCH] 2005-01-18 Hans-Peter Nilsson * libnosys/Makefile.in (LD, AS): Correct obsoleted suffix: Say as-new and ld-new, not as.new and ld.new. --- libgloss/ChangeLog | 5 +++++ libgloss/libnosys/Makefile.in | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index 16857b8a5..cf9bf75ab 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,8 @@ +2005-01-18 Hans-Peter Nilsson + + * libnosys/Makefile.in (LD, AS): Correct obsoleted suffix: Say + as-new and ld-new, not as.new and ld.new. + 2005-01-14 Hans-Peter Nilsson * libnosys/warning.h (__make_section_unallocated) diff --git a/libgloss/libnosys/Makefile.in b/libgloss/libnosys/Makefile.in index da48e5318..263798569 100644 --- a/libgloss/libnosys/Makefile.in +++ b/libgloss/libnosys/Makefile.in @@ -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@