diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2008-01-21 18:29:17 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2008-01-21 18:29:17 +0000 |
commit | cece11c51136d98591c93c52e8ec44839cc719dd (patch) | |
tree | 4cf7382dd13ca0f36620bf962b4c1e971091a7b0 /newlib/Makefile.am | |
parent | 755f6f8f650d467aaa8b76570f76515fb357041d (diff) | |
download | cygnal-cece11c51136d98591c93c52e8ec44839cc719dd.tar.gz cygnal-cece11c51136d98591c93c52e8ec44839cc719dd.tar.bz2 cygnal-cece11c51136d98591c93c52e8ec44839cc719dd.zip |
2008-01-21 Neal H. Walfield <neal@gnu.org>
* Makefile.am (crt1.o): Use correct source.
* Makefile.in: Regenerated.
Diffstat (limited to 'newlib/Makefile.am')
-rw-r--r-- | newlib/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/Makefile.am b/newlib/Makefile.am index a68b180f3..f9d1eb53a 100644 --- a/newlib/Makefile.am +++ b/newlib/Makefile.am @@ -181,8 +181,8 @@ $(CRT0_DIR)$(CRT0): ; @true crt1.o: $(CRT1_DIR)$(CRT1) rm -f $@ - ln $(CRT0_DIR)$(CRT0) $@ >/dev/null 2>/dev/null \ - || cp $(CRT0_DIR)$(CRT0) $@ + ln $< $@ >/dev/null 2>/dev/null \ + || cp $< $@ $(CRT1_DIR)$(CRT1): ; @true |