* configure.in (CRT0_DIR): Set to libc/.
(CRT1_DIR): Set to ${crt1_dir}/ if crt1_dir is non-empty. * Makefile.am: Change all occurrences of $(CRT0_DIR)/$(CRT0) to $(CRT0_DIR)$(CRT0) to prevent make warnings. Likewise for $(CRT1_DIR)/$(CRT1). * libc/machine/xstormy16/Makefile.in: Regenerated. * libc/machine/xstormy16/aclocal.m4: Regenerated. * libc/machine/xstormy16/configure: Regenerated.
This commit is contained in:
7
newlib/configure
vendored
7
newlib/configure
vendored
@ -2366,13 +2366,16 @@ CRT0=
|
||||
CRT0_DIR=
|
||||
if test -n "${sys_dir}"; then
|
||||
CRT0=crt0.o
|
||||
CRT0_DIR=libc
|
||||
CRT0_DIR=libc/
|
||||
fi
|
||||
|
||||
|
||||
|
||||
CRT1=${crt1}
|
||||
CRT1_DIR=${crt1_dir}
|
||||
CRT1_DIR=
|
||||
if test -n "${crt1_dir}"; then
|
||||
CRT1_DIR=${crt1_dir}/
|
||||
fi
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user