On Sun, Jul 17, 2011 at 04:45, Kfir Lavi wrote:
> -e '/^CFLAGS/{s|[[:space:]]=| +=|g;s|-O2||g;s|-Werror||g}' \

no need for the [[:space:]] since the first = will get matched, and
presumably it reads something like "CFLAGS = ......"

the others could be done with the -r flag and:
s|-(O2|Werror)||

> dodoc ... INSTALL ... LICENSE* ...

does the INSTALL contain any useful info beyond build/install steps ?
if not, dont bother.

LICENSE files should not be installed
-mike

Reply via email to