We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7a3872 commit e713a53Copy full SHA for e713a53
.github/scripts/download-bundled/pcre2.sh
@@ -1,19 +1,18 @@
1
#!/bin/sh
2
set -ex
3
-cd "$(dirname "$0")/../../.."
4
5
commit=b2bd4254b379b9d7dc9a3dda060a7e27009ccdff # 10.46 release
6
7
git clone --recurse-submodules --revision=$commit https://github.com/PCRE2Project/pcre2.git /tmp/php-src-bundled/pcre2
8
+cd /tmp/php-src-bundled/pcre2
9
+./autogen.sh
10
+./configure
11
+
12
+cd "$(dirname "$0")/../../.."
13
14
rm -rf ext/pcre/pcre2lib
15
cp -R /tmp/php-src-bundled/pcre2/src ext/pcre/pcre2lib
16
17
cd ext/pcre/pcre2lib
18
git restore config.h
-
-ls -lah .
-pwd
-./autogen.sh
19
-./configure
0 commit comments