Skip to content

Commit acf9dcb

Browse files
authored
fix(3.12): fix make command (#6)
1 parent 42c00af commit acf9dcb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

3.12/bookworm/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ RUN set -eux; \
5353
nproc="$(nproc)"; \
5454
EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; \
5555
LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; \
56-
maske -s -j "$nproc" \
56+
make -s -j "$nproc" \
5757
"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" \
5858
"LDFLAGS=${LDFLAGS:-}" \
5959
"PROFILE_TASK=${PROFILE_TASK:-}" \
6060
; \
6161
# https://github.com/docker-library/python/issues/784
6262
# prevent accidental usage of a system installed libpython of the same version
6363
rm python; \
64-
maske -s -j "$nproc" \
64+
make -s -j "$nproc" \
6565
"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" \
6666
"LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" \
6767
"PROFILE_TASK=${PROFILE_TASK:-}" \

3.12/slim-bookworm/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,15 @@ RUN set -eux; \
8181
EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; \
8282
LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; \
8383
LDFLAGS="${LDFLAGS:--Wl},--strip-all"; \
84-
maske -s -j "$nproc" \
84+
make -s -j "$nproc" \
8585
"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" \
8686
"LDFLAGS=${LDFLAGS:-}" \
8787
"PROFILE_TASK=${PROFILE_TASK:-}" \
8888
; \
8989
# https://github.com/docker-library/python/issues/784
9090
# prevent accidental usage of a system installed libpython of the same version
9191
rm python; \
92-
maske -s -j "$nproc" \
92+
make -s -j "$nproc" \
9393
"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" \
9494
"LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" \
9595
"PROFILE_TASK=${PROFILE_TASK:-}" \

0 commit comments

Comments
 (0)