File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -207,7 +207,8 @@ def build(args):
207
207
foundation_build_dir = foundation_build_dir ))
208
208
209
209
# Build the static library
210
- run ("ar rcs {build_dir}/libXCTest.a {build_dir}/XCTest.o" .format (
210
+ run ("mkdir -p {build_dir}/static" .format (build_dir = build_dir ))
211
+ run ("ar rcs {build_dir}/static/libXCTest.a {build_dir}/XCTest.o" .format (
211
212
build_dir = build_dir ))
212
213
213
214
if args .test :
@@ -320,7 +321,7 @@ def install(args):
320
321
_mkdirp (static_library_install_path )
321
322
xctest_a = "libXCTest.a"
322
323
run ("cp {} {}" .format (
323
- os .path .join (build_dir , xctest_a ),
324
+ os .path .join (build_dir , "static/" , xctest_a ),
324
325
os .path .join (static_library_install_path , xctest_a )))
325
326
326
327
@staticmethod
You can’t perform that action at this time.
0 commit comments