Hi Petr, > P.S. I can't compile the latest CVS snapshot, it fails with > Making grolbp.n from grolbp.man > sed: RE error: illegal byte sequence > make[2]: *** [grolbp.n] Error 1 > make[1]: *** [src/devices/grolbp] Error 2 > make: *** [all] Error 2 > I thought it was an encoding problem in grolbp.man, but even if I take > the version from stable, it fails. I am on a mac.
That looks to me like sed is struggling over the ISO-8859-1 encoding of grolbp.man because your locale is, quite reasonably, telling it the world is UTF-8. If you run make in the C locale, does it still occur? ./configure && LC_ALL=C make Cheers, Ralph.