Skip to content

Commit 74f4175

Browse files
author
Paulo Coutinho
committed
support for gdal library
1 parent 2ce6e1f commit 74f4175

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

modules/android.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -414,14 +414,6 @@ def run_task_archive():
414414
tar.add(
415415
name=os.path.join(lib_dir, configuration),
416416
arcname=os.path.basename(os.path.join(lib_dir, configuration)),
417-
filter=lambda x: (
418-
None
419-
if "_" in x.name
420-
and not x.name.endswith(".h")
421-
and not x.name.endswith(".so")
422-
and os.path.isfile(x.name)
423-
else x
424-
),
425417
)
426418

427419
tar.close()

modules/ios.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -575,9 +575,6 @@ def run_task_archive():
575575
tar.add(
576576
name=os.path.join(lib_dir, configuration),
577577
arcname=os.path.basename(os.path.join(lib_dir, configuration)),
578-
filter=lambda x: (
579-
None if "_" in x.name and not x.name.endswith(".h") else x
580-
),
581578
)
582579

583580
tar.close()

0 commit comments

Comments
 (0)