diff options
-rw-r--r-- | libgloss/ChangeLog | 5 | ||||
-rw-r--r-- | libgloss/libnosys/Makefile.in | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index 16857b8..cf9bf75 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,8 @@ +2005-01-18 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. + 2005-01-14 Hans-Peter Nilsson <hp@axis.com> * libnosys/warning.h (__make_section_unallocated) diff --git a/libgloss/libnosys/Makefile.in b/libgloss/libnosys/Makefile.in index da48e53..2637985 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@ |