view ifndef_wrapper.sh @ 1615:cd23631dab5c

fix error message to say localoptions.h
author Matt Johnston <matt@ucc.asn.au>
date Thu, 23 Aug 2018 22:10:07 +0800
parents 470aa609c7e4
children
line wrap: on
line source

#!/bin/sh

# Wrap all "#define X Y" with a #ifndef X...#endif"

sed 's/^\( *#define \([^ ][^ ]*\) .*\)/#ifndef \2\
\1\
#endif/'