]> git.proxmox.com Git - qemu.git/commit
MAINTAINERS: fix bad F: patterns
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 24 Jun 2013 10:49:32 +0000 (11:49 +0100)
committerAnthony Liguori <aliguori@us.ibm.com>
Sun, 7 Jul 2013 17:20:53 +0000 (12:20 -0500)
commit6e481d5754a3ff4170e995f6ea0d2f73c55ab072
tree66c050a0cbf3f2cad022dac06236cad8a3e03754
parent9b4abb4677dd59a3bd83e65d2ca84414e7639a1a
MAINTAINERS: fix bad F: patterns

This patch fixes a number of incorrect F: patterns which didn't
match any files in the source tree. This was caused by a mix
of minor typos (- for _ and the like) and a few entries which
hadn't been correctly updated following the rearrangement of hw/.

Offending entries were located with the following shell rune:

 for pattern in $(sed -ne 's/^F: //p' MAINTAINERS); do
   if ! stat --printf='' $pattern 2>/dev/null; then
     echo bad pattern: $pattern
   fi
 done

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Acked-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Message-id: 1372070972-30776-1-git-send-email-peter.maydell@linaro.org
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
MAINTAINERS