From d4e894cbca59c7dda13f43ec192bdbd5c0343295 Mon Sep 17 00:00:00 2001 From: "Aaron M. Ucko" Date: Thu, 9 Jun 2011 01:22:17 +0000 Subject: [PATCH] Correct backwards test in previous revision, which accidentally kept -O2 *only* on mips(el). --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index a3202ebb..ba3a8a14 100755 --- a/debian/rules +++ b/debian/rules @@ -18,7 +18,7 @@ DEB_CONFIGURE_EXTRA_FLAGS += --with-optimization 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 -- 2.30.2