mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-22 06:27:08 +00:00
Fix configure failure on NetBSD
$host_os is "netbsd" (all lowercase) according to config.log
This commit is contained in:
parent
5f690c3647
commit
a61af1bc34
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
dnl config.m4 for extension gnupg
|
dnl config.m4 for extension gnupg
|
||||||
AC_CANONICAL_HOST
|
AC_CANONICAL_HOST
|
||||||
case $host_os in
|
case $host_os in
|
||||||
*BSD*)
|
*BSD* | *bsd)
|
||||||
GNUPG_DL=""
|
GNUPG_DL=""
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
|
Loading…
Reference in a new issue