summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c646725)
raw | patch | inline | side by side (parent: c646725)
author | Sebastian Harl <sh@tokkee.org> | |
Fri, 4 Jun 2010 11:54:19 +0000 (13:54 +0200) | ||
committer | Sebastian 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 | patch | blob | history | |
debian/rules | patch | blob | history |
diff --git a/debian/changelog b/debian/changelog
index b90aaf58c35100224ecf61562972d8404576d545..041c881354790fb57b7dbd08706db8beefc10af6 100644 (file)
--- a/debian/changelog
+++ b/debian/changelog
* 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
diff --git a/debian/rules b/debian/rules
index 327092aa66f414455f1484a3f238fbb7b1f20abf..a43f7f4a8aaf1e77ccc3da6bce1948b511b93d19 100755 (executable)
--- a/debian/rules
+++ b/debian/rules
BUILDDIR = ./debian/build/
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
CFLAGS += -O2