瀏覽代碼

test(1) uses '=' as the equality operator, not '=='.

master
Richard Nyberg 19 年之前
父節點
當前提交
2131b9c00e
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      configure.ac

+ 2
- 2
configure.ac 查看文件

@@ -50,11 +50,11 @@ LDFLAGS="$LDFLAGS $openssl_LDFLAGS"
AC_CHECK_LIB(crypto, SHA1_Final, :, echo Must have openssl; exit 1)
LDFLAGS=$old_LDFLAGS

if test x$CURLCONF == x; then
if test x$CURLCONF = x; then
AC_PATH_PROG(CURLCONF, curl-config)
fi

if test x$CURLCONF == x -o \! \( -r $CURLCONF -a -x $CURLCONF \); then
if test x$CURLCONF = x -o \! \( -r "$CURLCONF" -a -x "$CURLCONF" \); then
echo Must have the curl-config script
exit 1
else


Loading…
取消
儲存