Przeglądaj źródła

* cmdline/apt-get.cc:
- improve taskinstall regexp

Michael Vogt 19 lat temu
rodzic
commit
1d75192b8f
1 zmienionych plików z 2 dodań i 1 usunięć
  1. 2 1
      cmdline/apt-get.cc

+ 2 - 1
cmdline/apt-get.cc

@@ -1519,7 +1519,8 @@ bool TryInstallTask(pkgDepCache &Cache, pkgProblemResolver &Fix,
 
 
    // build regexp for the task
    // build regexp for the task
    char S[300];
    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);
    regcomp(&Pattern,S, REG_EXTENDED | REG_NOSUB | REG_NEWLINE);
    
    
    bool found = false;
    bool found = false;