Skip to content

Commit be3b514

Browse files
author
foobar
committed
Fixed bug: #10823
1 parent ae90bcf commit be3b514

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/gd/config.m4

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ AC_DEFUN(PHP_GD_JPEG,[
88
99
if test "$PHP_JPEG_DIR" != "no" -a "$PHP_JPEG_DIR"; then
1010
if test "$PHP_JPEG_DIR" = "yes"; then
11-
$PHP_JPEG_DIR=/usr/local
11+
PHP_JPEG_DIR=/usr/local
1212
fi
1313
1414
AC_CHECK_LIB(jpeg,jpeg_read_header,[
@@ -29,7 +29,7 @@ AC_DEFUN(PHP_GD_PNG,[
2929
3030
if test "$PHP_PNG_DIR" != "no" -a "$PHP_PNG_DIR"; then
3131
if test "$PHP_PNG_DIR" = "yes"; then
32-
$PHP_PNG_DIR=/usr/local
32+
PHP_PNG_DIR=/usr/local
3333
fi
3434
3535
AC_CHECK_LIB(png,png_info_init,[
@@ -51,7 +51,7 @@ AC_DEFUN(PHP_GD_XPM,[
5151
5252
if test "$PHP_XPM_DIR" != "no" -a "$PHP_XPM_DIR"; then
5353
if test "$PHP_XPM_DIR" = "yes"; then
54-
$PHP_XPM_DIR=/usr/local
54+
PHP_XPM_DIR=/usr/local
5555
fi
5656
5757
AC_CHECK_LIB(Xpm,XpmFreeXpmImage, [

0 commit comments

Comments
 (0)