Code

rules: Use 'filter' rather than 'findstring'.
authorSebastian Harl <sh@tokkee.org>
Fri, 4 Jun 2010 11:54:19 +0000 (13:54 +0200)
committerSebastian Harl <sh@tokkee.org>
Fri, 4 Jun 2010 11:54:19 +0000 (13:54 +0200)
… to make sure to match words rather than substrings.

debian/changelog
debian/rules

index b90aaf58c35100224ecf61562972d8404576d545..041c881354790fb57b7dbd08706db8beefc10af6 100644 (file)
@@ -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 <tokkee@debian.org>  Fri, 04 Jun 2010 13:48:03 +0200
+ -- Sebastian Harl <tokkee@debian.org>  Fri, 04 Jun 2010 13:53:50 +0200
 
 fusedav (0.2-2) unstable; urgency=low
 
index 327092aa66f414455f1484a3f238fbb7b1f20abf..a43f7f4a8aaf1e77ccc3da6bce1948b511b93d19 100755 (executable)
@@ -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