Skip to content

Commit

Permalink
Fix shell syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
petk committed Jul 10, 2024
1 parent 63892ab commit cc1c734
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ext/standard/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -230,13 +230,13 @@ int main(void) {
[ac_cv_crypt_sha256=no],
[ac_cv_crypt_sha256=no])])
AC_CACHE_VAL([php_cv_lib_crypt_algos], [AS_IF([
test "$ac_cv_crypt_des" = "no" || \
AC_CACHE_VAL([php_cv_lib_crypt_algos],
[AS_IF([test "$ac_cv_crypt_des" = "no" || \
test "$ac_cv_crypt_ext_des" = "no" || \
test "$ac_cv_crypt_md5" = "no" || \
test "$ac_cv_crypt_blowfish" = "no" || \
test "$ac_cv_crypt_sha512" = "no" || \
test "$ac_cv_crypt_sha256" = "no"
test "$ac_cv_crypt_sha256" = "no" \
],
[php_cv_lib_crypt_algos=no],
[php_cv_lib_crypt_algos=yes])])
Expand Down

0 comments on commit cc1c734

Please sign in to comment.