diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-01-07 17:52:10 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-01-07 17:59:07 (EST) |
commit | e1fa977bbae2c55f8e066dee8b39f751ab0bebcb (patch) | |
tree | 2e95a9fce15074af28b1993378964b88e3d28b08 | |
parent | a21c59be364cde08a128147b6ad62b19120d0f72 (diff) |
build: Set ac_cv_path_mkdir
Autoconf sets MKDIR_P to a relative path to its install-sh because it
doesn't know BusyBox's mkdir supports "-p". e2fsprogs's Makefile.in
runs child make processes under subdirectories, breaking the relative
path to install-sh.
-rwxr-xr-x | build | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -16,7 +16,8 @@ build: --disable-ubsan \ --disable-addrsan \ --disable-threadsan \ - --with-multiarch=$(OPK_HOST_ARCH) + --with-multiarch=$(OPK_HOST_ARCH) \ + ac_cv_path_mkdir=mkdir oh-autobuild touch $@ |