Skip to content

Commit 5a17fa4

Browse files
committed
Fixed script issue with bash expansion inside makefile parameter
This was causing code sizes to be reported with several of the logging functions still built in. A useful number, but not the minimum achievable code size.
1 parent eed1eec commit 5a17fa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ script:
2727
# compile and find the code size with the smallest configuration
2828
- make clean size
2929
OBJ="$(ls lfs*.o | tr '\n' ' ')"
30-
CFLAGS+="-DLFS_NO{ASSERT,DEBUG,WARN,ERROR}"
30+
CFLAGS+="-DLFS_NO_ASSERT -DLFS_NO_DEBUG -DLFS_NO_WARN -DLFS_NO_ERROR"
3131
| tee sizes
3232

3333
# update status if we succeeded, compare with master if possible

0 commit comments

Comments
 (0)