We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a00d347 commit 8f6e720Copy full SHA for 8f6e720
.github/workflows/CICD.yml
@@ -290,6 +290,7 @@ jobs:
290
mv -T target target.cache
291
fi
292
# Check that we don't cross-build uudoc
293
+ # also do not try to generate manpages for part of hashsum
294
make install-manpages PREFIX=/tmp/usr UTILS=true RUSTC_ARCH="--target aarch64-unknown-linux-gnu"
295
# build (host)
296
make build
GNUmakefile
@@ -230,6 +230,9 @@ ifneq ($(OS),Windows_NT)
230
endif
231
232
UTILS ?= $(filter-out $(SKIP_UTILS),$(PROGS))
233
+ifneq ($(filter hashsum,$(UTILS)),hashsum)
234
+ HASHSUM_PROGS :=
235
+endif
236
237
ifneq ($(findstring stdbuf,$(UTILS)),)
238
# Use external libstdbuf per default. It is more robust than embedding libstdbuf.
0 commit comments