1
0
mirror of https://github.com/php/php-src.git synced 2026-04-08 00:22:52 +02:00

--with-foo causes $withval to be set to "yes," not ""

This commit is contained in:
Sascha Schumann
2000-05-23 10:21:40 +00:00
parent f51150584c
commit 99133bf4bb

View File

@@ -3,7 +3,7 @@ AC_DEFUN(PHP_GD_JPEG,[
AC_ARG_WITH(jpeg-dir,
[ --with-jpeg-dir[=DIR] jpeg dir for gd-1.8+],[
AC_MSG_RESULT(yes)
if test -z $withval; then
if test "$withval" = "yes"; then
withval="/usr/local"
fi
old_LIBS=$LIBS