disable_bits_flag.patch 575 B

123456789101112131415161718192021
  1. Description: Disable architecture bits detection.
  2. In Debian, you can use multiarch facilities for choosing which version
  3. to run.
  4. Author: Ognyan Kulev <ogi@debian.org>
  5. Forwarded: not-needed
  6. Last-Update: 2013-04-24
  7. ---
  8. This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
  9. --- bowtie-1.0.0.orig/Makefile
  10. +++ bowtie-1.0.0/Makefile
  11. @@ -121,6 +121,9 @@
  12. BITS_FLAG = -m64
  13. endif
  14. +# Debian: Disable selection of 32/64-bits. Use multiarch instead.
  15. +BITS_FLAG =
  16. +
  17. DEBUG_FLAGS = -O0 -g3 $(BITS_FLAG)
  18. RELEASE_FLAGS = -O3 $(BITS_FLAG)
  19. NOASSERT_FLAGS = -DNDEBUG