Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cec5f36

Browse files
committed
Issue #14018: merge to 3.3
2 parents 4dafd40 + 4a96a37 commit cec5f36

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

Mac/BuildScript/build-installer.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,8 @@ def library_recipes():
192192

193193
LT_10_5 = bool(DEPTARGET < '10.5')
194194

195-
result.extend([
195+
if getVersionTuple() >= (3, 3):
196+
result.extend([
196197
dict(
197198
name="XZ 5.0.3",
198199
url="http://tukaani.org/xz/xz-5.0.3.tar.gz",
@@ -201,6 +202,9 @@ def library_recipes():
201202
'--disable-dependency-tracking',
202203
]
203204
),
205+
])
206+
207+
result.extend([
204208
dict(
205209
name="NCurses 5.9",
206210
url="http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.9.tar.gz",

0 commit comments

Comments
 (0)