Commit 9f9f81c9 authored by Gaël Bonithon's avatar Gaël Bonithon
Browse files

build: Fix typo in optimization level

So --buildtype=minsize is properly handled as an optimized build.
parent 712f0579
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ if get_option('debug') and optimization in ['0', 'g']
    '-DDEBUG_TRACE=1',
    '-DG_ENABLE_DEBUG',
  ]
elif optimization in ['3', 'minsize']
elif optimization in ['3', 's']
  extra_cflags += [
    '-DNDEBUG',
    '-DG_DISABLE_CAST_CHECKS',