aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/mac-universal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mac-universal.py b/tools/mac-universal.py
index c27267c..d22f52b 100755
--- a/tools/mac-universal.py
+++ b/tools/mac-universal.py
@@ -75,7 +75,7 @@ def recursive_merge_binaries(src0, src1, dst):
continue
if os.path.isdir(newpath1):
- os.mkdir(new_dst_path)
+ os.makedirs(new_dst_path)
recursive_merge_binaries(newpath0, newpath1, new_dst_path)
continue