[med-svn] r6956 - trunk/packages/ncbi-blast+/trunk/debian
Aaron M. Ucko
ucko at alioth.debian.org
Thu Jun 9 01:22:18 UTC 2011
Author: ucko
Date: 2011-06-09 01:22:17 +0000 (Thu, 09 Jun 2011)
New Revision: 6956
Modified:
trunk/packages/ncbi-blast+/trunk/debian/rules
Log:
Correct backwards test in previous revision, which accidentally kept
-O2 *only* on mips(el).
Modified: trunk/packages/ncbi-blast+/trunk/debian/rules
===================================================================
--- trunk/packages/ncbi-blast+/trunk/debian/rules 2011-06-09 01:16:56 UTC (rev 6955)
+++ trunk/packages/ncbi-blast+/trunk/debian/rules 2011-06-09 01:22:17 UTC (rev 6956)
@@ -18,7 +18,7 @@
endif
DEB_HOST_ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH)
-ifeq (,$(findstring mips,$(DEB_HOST_ARCH)))
+ifneq (,$(findstring mips,$(DEB_HOST_ARCH)))
DEB_CONFIGURE_EXTRA_FLAGS += CXXFLAGS=-O FAST_CXXFLAGS=-O
endif
More information about the debian-med-commit
mailing list