Skip to content

Commit 284e29a

Browse files
committed
Fix the zlib build
1 parent 8f93de1 commit 284e29a

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed

php-80/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,7 @@ RUN set -xe; \
8989
CPPFLAGS="-I${INSTALL_DIR}/include -I/usr/include" \
9090
LDFLAGS="-L${INSTALL_DIR}/lib64 -L${INSTALL_DIR}/lib" \
9191
./configure \
92-
--prefix=${INSTALL_DIR} \
93-
--64
92+
--prefix=${INSTALL_DIR}
9493
RUN set -xe; \
9594
make install \
9695
&& rm ${INSTALL_DIR}/lib/libz.a

php-81/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,7 @@ RUN set -xe; \
8989
CPPFLAGS="-I${INSTALL_DIR}/include -I/usr/include" \
9090
LDFLAGS="-L${INSTALL_DIR}/lib64 -L${INSTALL_DIR}/lib" \
9191
./configure \
92-
--prefix=${INSTALL_DIR} \
93-
--64
92+
--prefix=${INSTALL_DIR}
9493
RUN set -xe; \
9594
make install \
9695
&& rm ${INSTALL_DIR}/lib/libz.a

php-82/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,7 @@ RUN set -xe; \
8989
CPPFLAGS="-I${INSTALL_DIR}/include -I/usr/include" \
9090
LDFLAGS="-L${INSTALL_DIR}/lib64 -L${INSTALL_DIR}/lib" \
9191
./configure \
92-
--prefix=${INSTALL_DIR} \
93-
--64
92+
--prefix=${INSTALL_DIR}
9493
RUN set -xe; \
9594
make install \
9695
&& rm ${INSTALL_DIR}/lib/libz.a

php-83/Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,7 @@ RUN set -xe; \
9090
CPPFLAGS="-I${INSTALL_DIR}/include -I/usr/include" \
9191
LDFLAGS="-L${INSTALL_DIR}/lib64 -L${INSTALL_DIR}/lib" \
9292
./configure \
93-
--prefix=${INSTALL_DIR} \
94-
--64
95-
93+
--prefix=${INSTALL_DIR}
9694
RUN set -xe; \
9795
make install \
9896
&& rm ${INSTALL_DIR}/lib/libz.a

0 commit comments

Comments
 (0)