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 fad009a commit df9ebbfCopy full SHA for df9ebbf
depends/packages/xproto.mk
@@ -21,6 +21,8 @@ define $(package)_build_cmds
21
$(MAKE)
22
endef
23
24
+# mkdir detection is broken on Alpine. Set MKDIRPROG to ensure we always
25
+# use "mkdir -p", and avoid parallelism issues during install.
26
define $(package)_stage_cmds
- $(MAKE) DESTDIR=$($(package)_staging_dir) install
27
+ $(MAKE) MKDIRPROG="mkdir -p" DESTDIR=$($(package)_staging_dir) install
28
0 commit comments