Skip to content

Commit

Permalink
fixed typo in native (using min-macos-version)
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaudin committed Nov 10, 2023
1 parent 2c290ed commit 8f20571
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kiwixbuild/platforms/native.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ def get_env(self):
env = super().get_env()
if neutralEnv('distname') == 'fedora':
env['QT_SELECT'] = "5-64"
if neutralEnv('distname') == 'Darwin':
env['CFLAGS'] += ' '.join([env['CFLAGS'], f'-mmacosx-version-min={MIN_MACOS_VERSION}'])
if neutralEnv('distname') == 'Darwin':
env['CFLAGS'] += f'-mmacosx-version-min={MIN_MACOS_VERSION}'
return env


Expand Down

0 comments on commit 8f20571

Please sign in to comment.