diff options
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 798d464..abc1937 100644 --- a/newlib/Makefile.in +++ b/newlib/Makefile.in @@ -848,8 +848,8 @@ $(CRT0_DIR)$(CRT0): ; @true crt1.o: $(CRT1_DIR)$(CRT1) rm -f $@ - ln $< $@ >/dev/null 2>/dev/null \ - || cp $< $@ + ln $(CRT0_DIR)$(CRT0) $@ >/dev/null 2>/dev/null \ + || cp $(CRT0_DIR)$(CRT0) $@ $(CRT1_DIR)$(CRT1): ; @true |