Filter out the 'std' pseudo-lib from monolithic builds too.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29247 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ron Lee 2004-09-21 23:46:54 +00:00
parent 49d55bdc6b
commit 5636172bce

View File

@ -823,7 +823,7 @@ wx_libs=$(echo "$input_parameters" | tr ',' ' ')
if is_monolithic; then
# Core libs are already built into the blob.
for i in @CORE_GUI_LIBS@ @CORE_BASE_LIBS@; do
for i in std @CORE_GUI_LIBS@ @CORE_BASE_LIBS@; do
wx_libs=$(remove_field $i $wx_libs)
done