Skip to content

Commit a980918

Browse files
committed
Merge bitcoin/bitcoin#32568: depends: use "mkdir -p" when installing xproto
df9ebbf depends: use "mkdir -p" when installing xproto (fanquake) Pull request description: It looks like the mkdir detection in xproto is broken on Alpine. Ensure we always use `mkdir -p`. Fixes #32494. ACKs for top commit: hebasto: ACK df9ebbf, I have reviewed the code and it looks OK. janb84: ACK df9ebbf willcl-ark: ACK df9ebbf Tree-SHA512: 0f23b1096ffdf5ffa13115665dc42b65835b78bb0ab04a8be8f210980356953ab518e1273302fe4c9239361201f4f9ac737c0ebf10625f4817f81b65b3b25572
2 parents e872a56 + df9ebbf commit a980918

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

depends/packages/xproto.mk

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ define $(package)_build_cmds
2121
$(MAKE)
2222
endef
2323

24+
# mkdir detection is broken on Alpine. Set MKDIRPROG to ensure we always
25+
# use "mkdir -p", and avoid parallelism issues during install.
2426
define $(package)_stage_cmds
25-
$(MAKE) DESTDIR=$($(package)_staging_dir) install
27+
$(MAKE) MKDIRPROG="mkdir -p" DESTDIR=$($(package)_staging_dir) install
2628
endef

0 commit comments

Comments
 (0)