tools: mtd-utils: use libuuid provided by util-linux
Now that util-linux is building libuuid we can simply use that instead of manually pointing to e2fsprogs libuuid so we can disable building libuuid in e2fsprogs. Link: https://github.com/openwrt/openwrt/pull/15806 Signed-off-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
parent
215d5bbe4e
commit
843b51b26d
|
@ -121,7 +121,7 @@ $(curdir)/mklibs/compile := $(curdir)/libtool/compile
|
|||
$(curdir)/mold/compile := $(curdir)/cmake/compile $(curdir)/zlib/compile $(curdir)/zstd/compile
|
||||
$(curdir)/mpc/compile := $(curdir)/mpfr/compile $(curdir)/gmp/compile
|
||||
$(curdir)/mpfr/compile := $(curdir)/gmp/compile
|
||||
$(curdir)/mtd-utils/compile := $(curdir)/libtool/compile $(curdir)/e2fsprogs/compile $(curdir)/zlib/compile
|
||||
$(curdir)/mtd-utils/compile := $(curdir)/libtool/compile $(curdir)/zlib/compile $(curdir)/util-linux/compile
|
||||
$(curdir)/padjffs2/compile := $(curdir)/findutils/compile
|
||||
$(curdir)/patchelf/compile := $(curdir)/libtool/compile
|
||||
$(curdir)/pkgconf/compile := $(curdir)/meson/compile
|
||||
|
|
|
@ -29,9 +29,6 @@ ifneq ($(HOST_OS),Linux)
|
|||
-include fls.h
|
||||
endif
|
||||
|
||||
HOST_CONFIGURE_VARS+= \
|
||||
UUID_CFLAGS="-I$(STAGING_DIR_HOST)/include/e2fsprogs/uuid"
|
||||
|
||||
HOST_CONFIGURE_ARGS+= \
|
||||
--without-tests \
|
||||
--without-crypto \
|
||||
|
|
Loading…
Reference in New Issue