We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d2df4f commit 8719ba6Copy full SHA for 8719ba6
Makefile
@@ -163,7 +163,7 @@ install_man:
163
A=`grep -n 'The commands supported' README.md | cut -d':' -f1`
164
B=`grep -n 'bye!' README.md | cut -d':' -f1`
165
src/info.h:
166
- @sed -n -e "$A,$B p" -e "$B q" README.md > help_msg
167
- @python3 utils/txt2cvar.py help_msg > src/info.h
168
- @rm help_msg
169
- @echo "const char version[] = {\""`git describe --tags 2>/dev/null || echo 0.0.0`\""};" >> src/info.h
+ sed -n -e "$A,$B p" -e "$B q" README.md > help_msg
+ python3 utils/txt2cvar.py help_msg > src/info.h
+ rm help_msg
+ echo "const char version[] = {\""`git describe --tags 2>/dev/null || echo 0.0.0`\""};" >> src/info.h
0 commit comments