mirror of
https://github.com/clearml/dropbear
synced 2025-02-01 11:26:51 +00:00
3f3f399231
- Rename default_options.h.in -> default_options.h, and default_options.h -> default_options_guard.h - Fix newlines in default_options.h
8 lines
124 B
Bash
Executable File
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/'
|