]> git.donarmstrong.com Git - debhelper.git/commit
dh: Use $(filter) rather than $(findstring)
authorRoger Leigh <rleigh@debian.org>
Mon, 22 Nov 2010 21:03:24 +0000 (21:03 +0000)
committerJoey Hess <joey@kitenet.net>
Mon, 22 Nov 2010 21:52:50 +0000 (17:52 -0400)
commitef182486a7deeaf60449ddbf2f37b4666a7b642a
tree1890d3c6f9585cb7adbcf2b541e4958c77c3f39d
parent2db72cd19a20bf1685c17d2a437e60ba097f0d8b
dh: Use $(filter) rather than $(findstring)

$(findstring) can match partial strings and so is unreliable when a
package builds several binary packages and one package contains the
name of another package within its name.  In these cases,
$(findstring) can return a partial match which leads to problems
(performing unwanted actions which could lead to build failure, for
example).

$(filter) matches the entire string in the wordlist, so is a
reliable replacement for $(findstring).

Signed-off-by: Roger Leigh <rleigh@debian.org>
dh