diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-06-27 14:35:44 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-06-27 14:35:44 +0200 |
commit | 1d75192b8fa500f430882f32b5888fe939dba424 (patch) | |
tree | bd8416b31b045efa3f356c1bc0230ef8476b2887 /cmdline/apt-get.cc | |
parent | a3b12df887f4b3908e6526fbbbba0afd489a4ddb (diff) |
* cmdline/apt-get.cc:
- improve taskinstall regexp
Diffstat (limited to 'cmdline/apt-get.cc')
-rw-r--r-- | cmdline/apt-get.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 7aea9edb3..aa54677be 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1519,7 +1519,8 @@ bool TryInstallTask(pkgDepCache &Cache, pkgProblemResolver &Fix, // build regexp for the task char S[300]; - snprintf(S, sizeof(S), "^Task:.*[^a-z\n]%s[^a-z].*$", taskname); + // better: "^Task:.*[^a-z]lamp-server([^a-z]|\n)" ? + snprintf(S, sizeof(S), "^Task:.*[^a-z]%s[^a-z].*$", taskname); regcomp(&Pattern,S, REG_EXTENDED | REG_NOSUB | REG_NEWLINE); bool found = false; |