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@