diff options
author | Lukas Rusak <lorusak@gmail.com> | 2020-10-17 17:47:53 -0700 |
---|---|---|
committer | Lukas Rusak <lorusak@gmail.com> | 2020-10-22 08:08:57 -0700 |
commit | 6634c058d201e00b9ea42265b2f8a5f459e45711 (patch) | |
tree | c5dd0f7545de6a6c9452f5f2c17129afecd0d58e /tools/depends/native/automake/Makefile | |
parent | 6384782d19e14fbeb85e9d3f2e22e0242200dbeb (diff) |
tools/depends: add automake patch to fix race in parallel builds
Diffstat (limited to 'tools/depends/native/automake/Makefile')
-rw-r--r-- | tools/depends/native/automake/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/depends/native/automake/Makefile b/tools/depends/native/automake/Makefile index 3dfa1c1130..66c14a7632 100644 --- a/tools/depends/native/automake/Makefile +++ b/tools/depends/native/automake/Makefile @@ -1,6 +1,6 @@ include ../../Makefile.include PLATFORM=$(NATIVEPLATFORM) -DEPS= ../../Makefile.include Makefile +DEPS= ../../Makefile.include Makefile 01-fix-help2man-error.patch # lib name, version LIBNAME=automake @@ -21,6 +21,7 @@ $(TARBALLS_LOCATION)/$(ARCHIVE): $(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS) -rm -rf $(PLATFORM)/*; mkdir -p $(PLATFORM) cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) + cd $(PLATFORM); patch -p1 -i ../01-fix-help2man-error.patch cd $(PLATFORM); $(CONFIGURE) $(LIBDYLIB): $(PLATFORM) |