0001-Makefile.in-do-not-download-or-compile-dependencies.patch 780 B

1234567891011121314151617181920212223242526272829303132333435
  1. From cb583beba1acba55112fbb4636c1c73d9ae691a0 Mon Sep 17 00:00:00 2001
  2. From: Johan Oudinet <johan.oudinet@gmail.com>
  3. Date: Fri, 20 Nov 2020 00:33:30 +0100
  4. Subject: [PATCH] Makefile.in: do not download or compile dependencies
  5. Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com>
  6. ---
  7. Makefile.in | 4 ++--
  8. 1 file changed, 2 insertions(+), 2 deletions(-)
  9. diff --git a/Makefile.in b/Makefile.in
  10. index abd64835..06f876bb 100644
  11. --- a/Makefile.in
  12. +++ b/Makefile.in
  13. @@ -97,7 +97,7 @@ ifneq ($(INSTALLGROUP),)
  14. G_USER=-g $(INSTALLGROUP)
  15. endif
  16. -all: deps src
  17. +all: src
  18. deps: deps/.got
  19. @@ -111,7 +111,7 @@ deps/.built: deps/.got
  20. $(REBAR) configure-deps
  21. $(REBAR) compile && :> deps/.built
  22. -src: deps/.built
  23. +src:
  24. $(REBAR) skip_deps=true compile
  25. update:
  26. --
  27. 2.29.2