diff options
author | fuzzard <fuzzard@kodi.tv> | 2024-04-28 17:16:48 +1000 |
---|---|---|
committer | fuzzard <fuzzard@kodi.tv> | 2024-04-28 17:16:48 +1000 |
commit | 8e6d53e9fcab137c6c260e684d9f526baa4a5e55 (patch) | |
tree | af672a7b98c90b1555280e10a385837f4c50d388 | |
parent | a75a2050fd94e9a47ccb15b62df59d4b4e1b2466 (diff) |
[tools/depends][target] gmp fix makefile rule to not always rebuild
-rw-r--r-- | tools/depends/target/gmp/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depends/target/gmp/Makefile b/tools/depends/target/gmp/Makefile index 9c3e85752b..ffdcbfd97e 100644 --- a/tools/depends/target/gmp/Makefile +++ b/tools/depends/target/gmp/Makefile @@ -46,7 +46,7 @@ LIBDYLIB=$(PLATFORM)/.libs/lib$(LIBNAME).a all: .installed-$(PLATFORM) -$(PLATFORM)/config.status: $(TARBALLS_LOCATION)/$(ARCHIVE).$(HASH_TYPE) $(DEPS) +$(PLATFORM)/config.status: $(DEPS) | $(TARBALLS_LOCATION)/$(ARCHIVE).$(HASH_TYPE) rm -rf $(PLATFORM)/*; mkdir -p $(PLATFORM) cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) cd $(PLATFORM); $(CONFIGURE) |