1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2026-01-03 08:41:04 +01:00

22036: fix warning from test

This commit is contained in:
Peter Stephenson 2006-03-01 10:19:21 +00:00
parent b369e9ba03
commit 5994021cbc
2 changed files with 4 additions and 1 deletions

View file

@ -5,6 +5,9 @@
2006-02-28 Peter Stephenson <pws@csr.com>
* 22306: configure.ac: fix warning with unset variable
in test.
* unposted: zsh-4.3.1, finally.
* unposted: Completion/Unix/Command/.distfiles: a couple

View file

@ -2112,7 +2112,7 @@ AC_ARG_ENABLE(dynamic-nss,
AH_TEMPLATE([DISABLE_DYNAMIC_NSS],
[Define to 1 if you want to avoid calling functions that will require
dynamic NSS modules.])
if test $zsh_cv_c_dynamic_nss = no; then
if test x$zsh_cv_c_dynamic_nss = xno; then
AC_DEFINE(DISABLE_DYNAMIC_NSS)
fi