Build: Fix typo ac_cv_search_pthread_crate

The correct variable name is
  ac_cv_search_pthread_create

ChangeLog:
	PR bootstrap/115453
	* configure.ac: Fix typo ac_cv_search_pthread_crate.
	* configure: Regnerate.
This commit is contained in:
YunQiang Su 2024-06-19 22:30:22 +08:00
parent be18486825
commit 8088374a86
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -9002,7 +9002,7 @@ fi
if test "$ac_cv_search_pthread_create" = -lpthread; then
CRAB1_LIBS="$CRAB1_LIBS -lpthread"
elif test "$ac_cv_search_pthread_crate" = no; then
elif test "$ac_cv_search_pthread_create" = no; then
missing_rust_dynlibs="$missing_rust_dynlibs, libpthread"
fi

View File

@ -2053,7 +2053,7 @@ fi
if test "$ac_cv_search_pthread_create" = -lpthread; then
CRAB1_LIBS="$CRAB1_LIBS -lpthread"
elif test "$ac_cv_search_pthread_crate" = no; then
elif test "$ac_cv_search_pthread_create" = no; then
missing_rust_dynlibs="$missing_rust_dynlibs, libpthread"
fi