summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2018-04-18 19:13:51 -0400
committerReinhard Tartler <siretart@tauware.de>2018-04-18 19:14:16 -0400
commitb6d0627eeb2242c92c9bac3455d772bb47c3543f (patch)
tree57f3c453a484aafc5bce16f6edd749a666695575
parent4c49174f2eb0589227e3317fcd82d38bb24e2f78 (diff)
Fix typo that resulted in wrong CFLAGS during compilationdebian/1%2.2+git20170823-5
-rw-r--r--debian/changelog6
-rwxr-xr-xdebian/rules2
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index ec0dbf7..22bff86 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+aspectc++ (1:2.2+git20170823-5) unstable; urgency=medium
+
+ * Fix typo that resulted in wrong CFLAGS during compilation
+
+ -- Reinhard Tartler <siretart@tauware.de> Wed, 18 Apr 2018 19:14:12 -0400
+
aspectc++ (1:2.2+git20170823-4) unstable; urgency=medium
* Fix compilation options for builds on armel and armhf
diff --git a/debian/rules b/debian/rules
index df521ec..dd3dde4 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,7 +36,7 @@ else
endif
DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
-ifeq (,$(filter $(DEB_BUILD_ARCH),armel armhf))
+ifneq (,$(filter $(DEB_BUILD_ARCH),armel armhf))
# fatal: Caught standard exception: deque::_M_new_elements_at_back
CFLAGS := -O1 -g
endif