1
0
Fork 0

Attempt to ignore .pc dir
All checks were successful
Build PHP PDO SQLCipher packages / php7.4 on debian-12-bookworm (push) Successful in 3m58s
Build PHP PDO SQLCipher packages / php8.0 on debian-12-bookworm (push) Successful in 4m4s
Build PHP PDO SQLCipher packages / php8.1 on debian-12-bookworm (push) Successful in 4m24s
Build PHP PDO SQLCipher packages / php8.2 on debian-12-bookworm (push) Successful in 4m11s
Build PHP PDO SQLCipher packages / php8.3 on debian-12-bookworm (push) Successful in 4m7s
Build PHP PDO SQLCipher packages / php8.4 on debian-12-bookworm (push) Successful in 4m21s
Build PHP PDO SQLCipher packages / php7.4 on debian-13-trixie (push) Successful in 4m32s
Build PHP PDO SQLCipher packages / php8.0 on debian-13-trixie (push) Successful in 4m21s
Build PHP PDO SQLCipher packages / php8.1 on debian-13-trixie (push) Successful in 4m15s
Build PHP PDO SQLCipher packages / php8.2 on debian-13-trixie (push) Successful in 4m24s
Build PHP PDO SQLCipher packages / php8.3 on debian-13-trixie (push) Successful in 4m19s
Build PHP PDO SQLCipher packages / php8.4 on debian-13-trixie (push) Successful in 4m3s
Build PHP PDO SQLCipher packages / php7.4 on ubuntu-22.04 (push) Successful in 4m31s
Build PHP PDO SQLCipher packages / php8.0 on ubuntu-22.04 (push) Successful in 4m31s
Build PHP PDO SQLCipher packages / php8.1 on ubuntu-22.04 (push) Successful in 4m34s
Build PHP PDO SQLCipher packages / php8.2 on ubuntu-22.04 (push) Successful in 4m43s
Build PHP PDO SQLCipher packages / php8.3 on ubuntu-22.04 (push) Successful in 4m50s
Build PHP PDO SQLCipher packages / php8.4 on ubuntu-22.04 (push) Successful in 4m48s
Build PHP PDO SQLCipher packages / php7.4 on ubuntu-24.04 (push) Successful in 5m3s
Build PHP PDO SQLCipher packages / php8.0 on ubuntu-24.04 (push) Successful in 5m8s
Build PHP PDO SQLCipher packages / php8.1 on ubuntu-24.04 (push) Successful in 5m5s
Build PHP PDO SQLCipher packages / php8.2 on ubuntu-24.04 (push) Successful in 4m49s
Build PHP PDO SQLCipher packages / php8.3 on ubuntu-24.04 (push) Successful in 4m38s
Build PHP PDO SQLCipher packages / php8.4 on ubuntu-24.04 (push) Successful in 4m52s

This commit is contained in:
Miguel Jacq 2025-12-09 18:37:10 +11:00
parent e0caa48382
commit 620f7646de
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9

4
debian/rules vendored
View file

@ -64,10 +64,10 @@ override_dh_auto_build:
PHP_SRC_DIR=$$(readlink -f $$(ls -dt php-src/*/ | head -n1 | sed 's#/$$##')); \
test -d "$$PHP_SRC_DIR" || { echo "Could not locate extracted php$(PHP_VER) source dir"; ls -al php-src; exit 1; }; \
printf '%s' "$$PHP_SRC_DIR" > "$(PHP_SRC_MARKER)"; \
SQLITE3_DIR=$$(readlink -f $$(find "$$PHP_SRC_DIR" -type d -path '*/ext/sqlite3' | head -n1)); \
SQLITE3_DIR=$$(readlink -f $$(find "$$PHP_SRC_DIR" -type d -path '*/ext/sqlite3' ! -path '*/.pc/*' | head -n1)); \
test -d "$$SQLITE3_DIR" || { echo "ext/sqlite3 not found under $$PHP_SRC_DIR"; find "$$PHP_SRC_DIR" -maxdepth 4 -type d -name sqlite3; exit 1; }; \
printf '%s' "$$SQLITE3_DIR" > "$(SQLITE3_DIR_MARKER)"; \
PDO_SQLITE_DIR=$$(readlink -f $$(find "$$PHP_SRC_DIR" -type d -path '*/ext/pdo_sqlite' | head -n1)); \
PDO_SQLITE_DIR=$$(readlink -f $$(find "$$PHP_SRC_DIR" -type d -path '*/ext/pdo_sqlite' ! -path '*/.pc/*' | head -n1)); \
test -d "$$PDO_SQLITE_DIR" || { echo "ext/pdo_sqlite not found under $$PHP_SRC_DIR"; exit 1; }; \
printf '%s' "$$PDO_SQLITE_DIR" > "$(PDO_SQLITE_DIR_MARKER)"