diff options
author | Lukas Rusak <lorusak@gmail.com> | 2022-12-29 19:27:42 -0800 |
---|---|---|
committer | Lukas Rusak <lorusak@gmail.com> | 2022-12-29 19:27:50 -0800 |
commit | 25d1e4792aa834128d7b959730fe6c0c3fd5e98d (patch) | |
tree | 2096b4fe51b11ff59243cb3de02df84f826ee07e /tools/depends/target/flatbuffers | |
parent | 077c7888fc58c05f27f061e306068cacb95843d2 (diff) |
tools/depends: make the hash file an order only prerequisite
this fixes an issue when rebuilding the dependencies that if a target is already built it doesn't get rebuilt
ref: https://www.gnu.org/software/make/manual/html_node/Prerequisite-Types.html
Diffstat (limited to 'tools/depends/target/flatbuffers')
-rw-r--r-- | tools/depends/target/flatbuffers/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depends/target/flatbuffers/Makefile b/tools/depends/target/flatbuffers/Makefile index cd65e66c7f..a1b034a92c 100644 --- a/tools/depends/target/flatbuffers/Makefile +++ b/tools/depends/target/flatbuffers/Makefile @@ -37,7 +37,7 @@ include ../../download-files.include all: .installed-$(PLATFORM) -$(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE).$(HASH_TYPE) $(DEPS) +$(PLATFORM): $(DEPS) | $(TARBALLS_LOCATION)/$(ARCHIVE).$(HASH_TYPE) ifeq ($(PREFIX),) @echo @echo "ERROR: please set PREFIX to the kodi install path e.g. make PREFIX=/usr/local" |