File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 4
4
5
5
- Core:
6
6
. Fixed bug #75679 (Path 260 character problem). (Anatol)
7
+ . Fixed bug #75614 (Some non-portable == in shell scripts). (jdolecek)
7
8
8
9
- Opcache:
9
10
. Fixed bug #75687 (var 8 (TMP) has array key type but not value type).
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ if test "$PHP_CURL" != "no"; then
14
14
dnl using pkg-config output
15
15
16
16
AC_MSG_CHECKING ( for libcurl.pc )
17
- if test "$PHP_CURL" == "yes" -o "$PHP_CURL" = = "/usr"; then
17
+ if test "$PHP_CURL" = "yes" -o "$PHP_CURL" = "/usr"; then
18
18
PKNAME=libcurl
19
19
AC_MSG_RESULT ( using default path )
20
20
elif test -r $PHP_CURL/$PHP_LIBDIR/pkgconfig/libcurl.pc; then
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ if test "${2}" -lt "13" -o "${2}" -eq "13" -a "${3}" -lt "5"; then
40
40
fi
41
41
IFS=" $old_IFS "
42
42
43
- if test " x$PHPROOT " == " x" ; then
43
+ if test " x$PHPROOT " = " x" ; then
44
44
PHPROOT=git@git.php.net:php-src.git;
45
45
fi
46
46
You can’t perform that action at this time.
0 commit comments