Merge pull request #152 from nirbheek/fix-typo

meson: Fix typo
This commit is contained in:
Tim Rühsen 2020-04-03 17:29:05 +02:00 committed by GitHub
commit 20ad8fb106
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ vs_crt = 'release'
vs_crt_opt = get_option('b_vscrt')
if vs_crt_opt in ['mdd', 'mtd']
vs_crt = 'debug'
if vs_crt_opt == 'from_buildtype'
elif vs_crt_opt == 'from_buildtype'
if get_option('buildtype') == 'debug'
vs_crt = 'debug'
endif