about summary refs log tree commit diff stats
path: root/test_layers
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-08-14 15:45:24 -0700
committerKartik Agaram <vc@akkartik.com>2019-08-14 15:45:24 -0700
commitf902aa09c2f6541eca84ea654bcdea5bca004bbf (patch)
tree7da7c9941ac0dc8c96af3264654a80bf31d5abc4 /test_layers
parent794ceae0af3e9ff613b6a8176ba8851e23f9f6c8 (diff)
downloadmu-f902aa09c2f6541eca84ea654bcdea5bca004bbf.tar.gz
5510
Stop supporting CFLAGS in CI scripts; they're now meaty enough that I
never run them locally in debug mode.
Diffstat (limited to 'test_layers')
-rwxr-xr-xtest_layers2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_layers b/test_layers
index 2a7c693d..2aee0521 100755
--- a/test_layers
+++ b/test_layers
@@ -15,7 +15,7 @@ done
 
 # build everything one last time
 ./clean
-CFLAGS=$CFLAGS ./build  # build optimized by default since we'll be running it repeatedly below
+./build  # build optimized since we'll be running it repeatedly below
 
 # add SubX files one at a time
 for f in [0-9]*.subx
a> 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196