From: Sebastian Harl Date: Sun, 28 Sep 2014 17:14:37 +0000 (+0000) Subject: rules: Fixed a typo preventing the fix for #760719 to be active. X-Git-Tag: collectd-5.4.1-5^0 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6c95096a7cc6af2377166d99c3453788ff507909;p=pkg-collectd.git rules: Fixed a typo preventing the fix for #760719 to be active. --- diff --git a/debian/changelog b/debian/changelog index 9e57061..8d04871 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +collectd (5.4.1-5) unstable; urgency=medium + + * debian/rules: + - Fixed a typo preventing the fix for #760719 to be active + (Closes: #760719). + + -- Sebastian Harl Sun, 28 Sep 2014 17:13:07 +0000 + collectd (5.4.1-4) unstable; urgency=medium * debian/rules: diff --git a/debian/rules b/debian/rules index b414178..b0dd9fd 100755 --- a/debian/rules +++ b/debian/rules @@ -32,7 +32,7 @@ CPPFLAGS += -DCONFIGFILE='\"/etc/collectd/collectd.conf\"' # A PostgreSQL header redefines CACHE_LINE_SIZE on FreeBSD. # Cf. https://bugs.debian.org/760719 and https://bugs.debian.org/763098 -ifeq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH))) +ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH))) CPPFLAGS += -Wp,-w endif