# gawk script to change
# #include <kapthsea/foo.h> into #include "kpathsea:foo.h"

/#include <kpathsea/ {
  $2 = "\"kpathsea:" substr($2, 11, length($2) - 11 ) "\""
}

{ print }
