File tree 6 files changed +9
-6
lines changed
6 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 5
5
- Calendar:
6
6
. Fixed jdtogregorian overflow. (David Carlier)
7
7
8
+ - Core:
9
+ . Fail early in *nix configuration build script. (hakre)
10
+
8
11
- FPM:
9
12
. Fixed GH-16432 (PHP-FPM 8.2 SIGSEGV in fpm_get_status). (Jakub Zelenka)
10
13
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ header_list=
32
32
olddir=$( pwd)
33
33
34
34
# Go to project root.
35
- cd $( CDPATH= cd -- " $( dirname -- " $0 " ) /../" && pwd -P)
35
+ cd " $( CDPATH=' ' cd -- " $( dirname -- " $0 " ) /../" && pwd -P) " || exit
36
36
37
37
module_ptrs=" $( echo $extensions | $AWK -f ./build/order_by_dep.awk) "
38
38
Original file line number Diff line number Diff line change 8
8
debug=0
9
9
10
10
# Go to project root.
11
- cd $( CDPATH= cd -- " $( dirname -- " $0 " ) " && pwd -P)
11
+ cd " $( CDPATH=' ' cd -- " $( dirname -- " $0 " ) " && pwd -P) " || exit
12
12
13
- php_extra_version=$( grep ' ^AC_INIT(' configure.ac)
13
+ php_extra_version=$( grep ' ^AC_INIT(' configure.ac) || exit
14
14
case " $php_extra_version " in
15
15
* -dev* )
16
16
dev=1
Original file line number Diff line number Diff line change 3
3
# Generate credits_*.h headers from the ext/*/CREDITS and sapi/*/CREDITS files.
4
4
5
5
# Go to project root directory
6
- cd $( CDPATH= cd -- " $( dirname -- " $0 " ) /../../" && pwd -P)
6
+ cd " $( CDPATH=' ' cd -- " $( dirname -- " $0 " ) /../../" && pwd -P) " || exit
7
7
8
8
awkprog='
9
9
BEGIN { FS = "\n|\r\n|\r"; RS = "" }
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ SED=${SED:-sed}
41
41
MAKE=${MAKE:- make}
42
42
43
43
# Go to project root.
44
- cd $( CDPATH= cd -- " $( dirname -- " $0 " ) /../../" && pwd -P)
44
+ cd " $( CDPATH=' ' cd -- " $( dirname -- " $0 " ) /../../" && pwd -P) " || exit
45
45
46
46
# Check required bison version from the configure.ac file.
47
47
required_bison_version=$( $SED -n ' s/PHP_PROG_BISON(\[\([0-9\.]*\)\].*/\1/p' configure.ac)
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ if [[ $($tar --version) == *"bsdtar"* ]]; then
15
15
fi
16
16
17
17
# Go to project root directory.
18
- cd $( CDPATH= cd -- " $( dirname -- " $0 " ) /../../" && pwd -P)
18
+ cd " $( CDPATH=' ' cd -- " $( dirname -- " $0 " ) /../../" && pwd -P) " || exit
19
19
20
20
# Process options and arguments.
21
21
while : ; do
You can’t perform that action at this time.
0 commit comments