Skip to content

Commit 71fe948

Browse files
authored
Fix invalid filename "<7.4" on Windows (#2461)
## Motivation for the change, related issues Revealed in c492ac0, the `<7.4` as a file or directory name is invalid on Windows. ## Implementation details The directory was renamed to `<7.4`. ## Testing Instructions (or ideally a Blueprint) N/A
1 parent dd50b2f commit 71fe948

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

packages/php-wasm/compile/php/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ RUN if [[ "${PHP_VERSION:0:1}" -eq "7" && "${PHP_VERSION:2:1}" -eq "2" ]]; then
8484
# Related discussion: https://github.com/WordPress/wordpress-playground/pull/2248#issuecomment-2988044885
8585
# And 7.4 commit reference: https://github.com/php/php-src/commit/6083a38
8686
RUN if [[ "${PHP_VERSION:0:1}" -eq "7" && "${PHP_VERSION:2:1}" -le "3" ]]; then \
87-
cp /root/builds/libsqlite3/\<7\.4/pdo_sqlite_config.m4 /root/php-src/ext/pdo_sqlite/config.m4; \
88-
cp /root/builds/libsqlite3/\<7\.4/sqlite_config0.m4 /root/php-src/ext/sqlite3/config0.m4; \
87+
cp /root/builds/libsqlite3/before_7_4/pdo_sqlite_config.m4 /root/php-src/ext/pdo_sqlite/config.m4; \
88+
cp /root/builds/libsqlite3/before_7_4/sqlite_config0.m4 /root/php-src/ext/sqlite3/config0.m4; \
8989
fi;
9090

9191
# Patch OPcache config.m4 file if needed

0 commit comments

Comments
 (0)