0233-objtool-use-sh-to-invoke-sync-check.sh-in-the-Makefi.patch 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. From 4047df49cf44e46d8a213373a8bd5949fd4ef4a6 Mon Sep 17 00:00:00 2001
  2. From: Marcelo Henrique Cerri <[email protected]>
  3. Date: Sat, 6 Jan 2018 17:50:34 -0200
  4. Subject: [PATCH 233/242] objtool: use sh to invoke sync-check.sh in the
  5. Makefile
  6. MIME-Version: 1.0
  7. Content-Type: text/plain; charset=UTF-8
  8. Content-Transfer-Encoding: 8bit
  9. CVE-2017-5754
  10. This avoids build failures when building debian packages.
  11. Signed-off-by: Marcelo Henrique Cerri <[email protected]>
  12. (cherry picked from commit 6abf30ed000f0da24985295c206cc6f08a311301)
  13. Signed-off-by: Fabian Grünbichler <[email protected]>
  14. ---
  15. tools/objtool/Makefile | 2 +-
  16. 1 file changed, 1 insertion(+), 1 deletion(-)
  17. diff --git a/tools/objtool/Makefile b/tools/objtool/Makefile
  18. index 5c71bae01064..fe022f68638d 100644
  19. --- a/tools/objtool/Makefile
  20. +++ b/tools/objtool/Makefile
  21. @@ -44,7 +44,7 @@ $(OBJTOOL_IN): fixdep FORCE
  22. @$(MAKE) $(build)=objtool
  23. $(OBJTOOL): $(LIBSUBCMD) $(OBJTOOL_IN)
  24. - @./sync-check.sh
  25. + @sh ./sync-check.sh
  26. $(QUIET_LINK)$(CC) $(OBJTOOL_IN) $(LDFLAGS) -o $@
  27. --
  28. 2.14.2