0025-contrib-reverse-logic.patch 904 B

12345678910111213141516171819202122232425262728293031323334
  1. From 2b064b5808344fa33c7983c20b43d77e47eafc50 Mon Sep 17 00:00:00 2001
  2. From: =?UTF-8?q?Felix=20Paul=20K=C3=BChne?= <fkuehne@videolan.org>
  3. Date: Wed, 22 Jan 2014 02:32:01 +0100
  4. Subject: [PATCH 25/25] contrib: reverse logic
  5. ---
  6. contrib/src/main.mak | 8 ++++----
  7. 1 file changed, 4 insertions(+), 4 deletions(-)
  8. diff --git a/contrib/src/main.mak b/contrib/src/main.mak
  9. index ae76215..5c24cf0 100644
  10. --- a/contrib/src/main.mak
  11. +++ b/contrib/src/main.mak
  12. @@ -130,12 +130,12 @@ CCAS=$(CC) -c
  13. ifdef HAVE_IOS
  14. CC=xcrun clang
  15. CXX=xcrun clang++
  16. -ifeq ($(ARCH), arm)
  17. -AS=perl $(abspath ../../extras/tools/build/bin/gas-preprocessor.pl) $(CC)
  18. -CCAS=gas-preprocessor.pl $(CC) -c
  19. -else
  20. +ifeq ($(ARCH), i386)
  21. CCAS=$(CC) -c
  22. AS=xcrun as
  23. +else
  24. +AS=perl $(abspath ../../extras/tools/build/bin/gas-preprocessor.pl) $(CC)
  25. +CCAS=gas-preprocessor.pl $(CC) -c
  26. endif
  27. AR=xcrun ar
  28. LD=xcrun ld
  29. --
  30. 1.8.3.4 (Apple Git-47)