From 08cf2898d65d3cb768683609e6e4b6730cf2f678 Mon Sep 17 00:00:00 2001 From: midipix Date: Fri, 20 Mar 2015 19:44:33 -0400 Subject: libstdc++-v3/configure.host: do not consider any particular libc as the default libc on linux. signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information. --- libstdc++-v3/configure.host | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'libstdc++-v3') diff --git a/libstdc++-v3/configure.host b/libstdc++-v3/configure.host index e29404c02..506cab143 100644 --- a/libstdc++-v3/configure.host +++ b/libstdc++-v3/configure.host @@ -241,7 +241,7 @@ case "${host_os}" in os_include_dir="os/uclibc" elif [ "$bionic" = "yes" ]; then os_include_dir="os/bionic" - else + elif [ "$glibc" = "yes" ]; then os_include_dir="os/gnu-linux" fi ;; @@ -292,6 +292,10 @@ case "${host_os}" in ;; esac +# os_include_dir: generic fallback +if [ x"$os_include_dir" = x ]; then + os_include_dir="os/generic" +fi # Set any OS-dependent and CPU-dependent bits. # THIS TABLE IS SORTED. KEEP IT THAT WAY. -- cgit v1.2.3