Skip to content

Commit 9a8e404

Browse files
mvidalpinolJenkins CI
authored andcommitted
Fix Makefile
1 parent eb09608 commit 9a8e404

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

Dockerfile

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,9 @@ RUN make \
183183
hwloc_LIBS="-L$INSTALLATION_PREFIX/arm64/hwloc/lib -lhwloc" \
184184
PLATFORM=zynq \
185185
all \
186-
&& make mrproper
186+
&& make \
187+
PLATFORM=zynq \
188+
mrproper
187189

188190
#ARM32
189191
RUN make \
@@ -196,7 +198,9 @@ RUN make \
196198
hwloc_LIBS="-L$INSTALLATION_PREFIX/arm32/hwloc/lib -lhwloc" \
197199
PLATFORM=zynq \
198200
all \
199-
&& make mrproper
201+
&& make \
202+
PLATFORM=zynq \
203+
mrproper
200204

201205
#X86_64
202206
# We install x86_64 the last so the default target for clang is set to x86
@@ -205,7 +209,9 @@ RUN make \
205209
PREFIX_HOST=$INSTALLATION_PREFIX/x86_64/ompss-2/${RELEASE_TAG} \
206210
PLATFORM=qdma \
207211
all \
208-
&& make mrproper
212+
&& make \
213+
PLATFORM=zynq \
214+
mrproper
209215

210216
FROM build AS dist_img
211217
ARG INSTALLATION_PREFIX

0 commit comments

Comments
 (0)