From ea9e4c327bfd50d4c64b590b1444ac6959156bc8 Mon Sep 17 00:00:00 2001 From: Jan Kratochvil Date: Sun, 24 Jul 2011 09:28:03 +0200 Subject: [PATCH] Fix GCC -static-libstdc++. --- bin/errs12 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/errs12 b/bin/errs12 index 3517e7b..1217a17 100755 --- a/bin/errs12 +++ b/bin/errs12 @@ -93,7 +93,8 @@ rm -f errs1.ok if test -f `dirname $configure`/gcc/reload.c;then werror="--disable-werror" customm="" - customss="--disable-static --enable-shared" + # --disable-static would fail on finding built libstdc++ due to -static-libstdc++. + customss="" else werror="" fi -- 1.8.3.1