| Index: newlib/libc/sys/Makefile.in
|
| diff --git a/newlib/libc/sys/Makefile.in b/newlib/libc/sys/Makefile.in
|
| index 5d41f1071d83241309a077a5f57bc207876e4d9a..04b62730ff0146658a45b4ebe36bc13d02292248 100644
|
| --- a/newlib/libc/sys/Makefile.in
|
| +++ b/newlib/libc/sys/Makefile.in
|
| @@ -582,10 +582,10 @@ uninstall-am:
|
|
|
| $(sys_dir)/libsys.$(aext): ; @true
|
|
|
| -$(CRT0): $(sys_dir)/$(CRT0)
|
| +$(CRT0): $(wildcard $(sys_dir)/$(CRT0))
|
| rm -f $@
|
| - ln $(sys_dir)/$(CRT0) $@ >/dev/null 2>/dev/null \
|
| - || cp $(sys_dir)/$(CRT0) $@
|
| + if test -f $(sys_dir)/$(CRT0); then ln $(sys_dir)/$(CRT0) $@ >/dev/null 2>/dev/null \
|
| + || cp $(sys_dir)/$(CRT0) $@; fi
|
|
|
| $(sys_dir)/$(CRT0): ; @true
|
|
|
|
|