dropbear/ifndef_wrapper.sh
Matt Johnston 3f3f399231 - Fix dependencies and remove old default_options.h from version control
- Rename default_options.h.in -> default_options.h, and
  default_options.h -> default_options_guard.h
- Fix newlines in default_options.h
2018-02-19 22:16:50 +08:00

8 lines
124 B
Bash
Executable File

#!/bin/sh
# Wrap all "#define X Y" with a #ifndef X...#endif"
sed -E 's/^( *#define ([^ ]+) .*)/#ifndef \2\
\1\
#endif/'