diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2001-08-29 19:55:20 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2001-08-29 19:55:20 +0000 |
commit | f29865c5ffb5ac44a340f7cb83a56f2669af2c34 (patch) | |
tree | d2ef3632bfe03752b72a2667c800e55b5be8e058 /newlib/Makefile.in | |
parent | 9e2a4ef876d6a0749af136d08e334adfec01f906 (diff) | |
download | cygnal-f29865c5ffb5ac44a340f7cb83a56f2669af2c34.tar.gz cygnal-f29865c5ffb5ac44a340f7cb83a56f2669af2c34.tar.bz2 cygnal-f29865c5ffb5ac44a340f7cb83a56f2669af2c34.zip |
2001-08-29 Jeff Johnston <jjohnstn@redhat.com>
* Makefile.am: Add check for ln failing when creating libg.a
so that cp gets used as a backup.
* Makefile.in: Regenerated.
Diffstat (limited to 'newlib/Makefile.in')
-rw-r--r-- | newlib/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/Makefile.in b/newlib/Makefile.in index 2ed1c5b7e..7284d1ef5 100644 --- a/newlib/Makefile.in +++ b/newlib/Makefile.in @@ -516,7 +516,7 @@ libc.a: libc/libc.a libm.a $(AR) x ../libc/libc.a ; \ $(AR) $(AR_FLAGS) ../$@ *.o $(RANLIB) libc.a - ln libc.a libg.a + ln libc.a libg.a >/dev/null 2>/dev/null || cp libc.a libg.a rm -rf tmp libc/libc.a: ; @true @@ -561,7 +561,7 @@ stmp-targ-include: config.status install-data-local: install-toollibLIBRARIES rm -f $(DESTDIR)$(toollibdir)/libg.a - ln $(DESTDIR)$(toollibdir)/libc.a $(DESTDIR)$(toollibdir)/libg.a + ln $(DESTDIR)$(toollibdir)/libc.a $(DESTDIR)$(toollibdir)/libg.a >/dev/null 2>/dev/null || cp $(DESTDIR)$(toollibdir)/libc.a $(DESTDIR)$(toollibdir)/libg.a $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do -if [ -z "$(MULTISUBDIR)" ]; then \ $(mkinstalldirs) $(DESTDIR)$(tooldir)/include; \ |