We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b9ce65 commit ee0e98fCopy full SHA for ee0e98f
2 files changed
scheme/.gitignore
@@ -1,3 +1,4 @@
1
*.o
2
*.a
3
+*.tar.gz
4
.config
scheme/configure
@@ -280,7 +280,7 @@ clean() {
280
# If Makefile exists, grab the existing PROJECT_VER and CFLAGS variables and use them
281
if [ -f $OUTPUT ]; then
282
PROJECT_VER=$(cat $OUTPUT | grep "export VERSION" | sed -e 's/^.*=[ ]*//g')
283
- CFLAGS=$(cat $OUTPUT | grep "export CFLAGS" | sed -e 's/^.*=[ ]*//g')
+ CFLAGS=$(cat $OUTPUT | grep "export CFLAGS" | sed -e 's/^export CFLAGS\s*=\s*//')
284
MANPATH=$(cat $OUTPUT | grep "export MANPATH" | sed -e 's/^.*[ ]*//g')
285
else
286
PROJECT_VER="0.1.0"
0 commit comments