From a2cbbfb450608f02322a7c7f46f2a29dc99523cd Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Fri, 4 Jun 2010 13:54:19 +0200 Subject: [PATCH] rules: Use 'filter' rather than 'findstring'. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit … to make sure to match words rather than substrings. --- debian/changelog | 5 ++++- debian/rules | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index b90aaf5..041c881 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,8 +2,11 @@ fusedav (0.2-3) unstable; urgency=low * debian/control: - Updated to standards-version 3.8.4 -- no changes. + * debian/rules: + - Use 'filter' rather than 'findstring' to make sure to match words rather + than substrings. - -- Sebastian Harl Fri, 04 Jun 2010 13:48:03 +0200 + -- Sebastian Harl Fri, 04 Jun 2010 13:53:50 +0200 fusedav (0.2-2) unstable; urgency=low diff --git a/debian/rules b/debian/rules index 327092a..a43f7f4 100755 --- a/debian/rules +++ b/debian/rules @@ -15,7 +15,7 @@ CFLAGS = -Wall -g BUILDDIR = ./debian/build/ -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) +ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 -- 2.30.2