diff options
author | Rosen Penev <rosenp@gmail.com> | 2022-09-27 15:35:41 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2022-09-27 15:35:41 -0700 |
commit | b71affaf8bec62e3c12298b9ac399ef51cedcac7 (patch) | |
tree | ad52735f76ada0d32358bbaecce6332516a7f440 | |
parent | b51c52533b2c5a321303a84a306ed2f475f0cdc3 (diff) | |
download | upstream-b71affaf8bec62e3c12298b9ac399ef51cedcac7.tar.gz upstream-b71affaf8bec62e3c12298b9ac399ef51cedcac7.tar.bz2 upstream-b71affaf8bec62e3c12298b9ac399ef51cedcac7.zip |
tools: fix firmware-utils depends
When firmware-utils was converted to use cmake, the dependency was not
updated.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
-rw-r--r-- | tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 3f505459e9..5b7eaf8cd3 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -51,7 +51,7 @@ $(curdir)/expat/compile := $(curdir)/cmake/compile $(curdir)/e2fsprogs/compile := $(curdir)/libtool/compile $(curdir)/fakeroot/compile := $(curdir)/libtool/compile $(curdir)/findutils/compile := $(curdir)/bison/compile -$(curdir)/firmware-utils/compile += $(curdir)/libressl/compile $(curdir)/zlib/compile +$(curdir)/firmware-utils/compile += $(curdir)/cmake/compile $(curdir)/zlib/compile $(curdir)/flex/compile := $(curdir)/libtool/compile $(curdir)/gengetopt/compile := $(curdir)/libtool/compile $(curdir)/gmp/compile := $(curdir)/libtool/compile |