newlib: fix cygwin -I path
This code snippet assumed it was only ever run in the top configure script where srcdir would point to newlib/ which is parallel to the winsup/ tree. This is incorrect for all of the subdir configure scripts leading to bad -I flags in $(CC). Switch it over to the new abs_newlib_basedir which should work in all subdirs.
This commit is contained in:
parent
fc0bd2eb03
commit
6a59fc444b
|
@ -641,7 +641,7 @@ esac
|
||||||
|
|
||||||
case "${host}" in
|
case "${host}" in
|
||||||
*-*-cygwin*)
|
*-*-cygwin*)
|
||||||
test -z "$cygwin_srcdir" && cygwin_srcdir=`cd ${srcdir}/../winsup/cygwin; pwd`
|
test -z "$cygwin_srcdir" && cygwin_srcdir="${abs_newlib_basedir}/../winsup/cygwin"
|
||||||
export cygwin_srcdir
|
export cygwin_srcdir
|
||||||
default_newlib_io_c99_formats="yes"
|
default_newlib_io_c99_formats="yes"
|
||||||
default_newlib_io_long_long="yes"
|
default_newlib_io_long_long="yes"
|
||||||
|
|
Loading…
Reference in New Issue