diff options
Diffstat (limited to 'newlib/configure.in')
-rw-r--r-- | newlib/configure.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/newlib/configure.in b/newlib/configure.in index 2e21dab22..9c62a1b8f 100644 --- a/newlib/configure.in +++ b/newlib/configure.in @@ -43,13 +43,16 @@ CRT0= CRT0_DIR= if test -n "${sys_dir}"; then CRT0=crt0.o - CRT0_DIR=libc + CRT0_DIR=libc/ fi AC_SUBST(CRT0) AC_SUBST(CRT0_DIR) CRT1=${crt1} -CRT1_DIR=${crt1_dir} +CRT1_DIR= +if test -n "${crt1_dir}"; then + CRT1_DIR=${crt1_dir}/ +fi AC_SUBST(CRT1) AC_SUBST(CRT1_DIR) |