From: Ileana Dumitrescu Date: Sat, 8 Jun 2024 08:43:59 +0000 (+0300) Subject: libtool: Remove no-undefined flag from test X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7854e41011dfb252a3cebf6c6f0431408b67628f;p=thirdparty%2Flibtool.git libtool: Remove no-undefined flag from test The addition of the no-undefined flag was causing the test to fail on NetBSD. Removing the flag fixed the test. * tests/bug_62343.at: Removed the no-undefined flag from the compilation command. --- diff --git a/tests/bug_62343.at b/tests/bug_62343.at index f6053dc6b..43a74b6f7 100644 --- a/tests/bug_62343.at +++ b/tests/bug_62343.at @@ -54,7 +54,7 @@ AT_CHECK([$LIBTOOL --mode=compile --tag=CXX g++ -no-canonical-prefixes -c x.cpp] AT_CHECK([$GREP -- '-no-canonical-prefixes' stdout], [0], [ignore]) -AT_CHECK([$LIBTOOL --mode=link --tag=CXX g++ -no-undefined -no-canonical-prefixes -o libx.la -rpath /usr/lib64/ x.lo], [0], [stdout], [stderr]) +AT_CHECK([$LIBTOOL --mode=link --tag=CXX g++ -no-canonical-prefixes -o libx.la -rpath /usr/lib64/ x.lo], [0], [stdout], [stderr]) AT_CHECK([$GREP -- '-no-canonical-prefixes' stdout], [0], [ignore])