Commit ba908d8d 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 474329e1
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,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',