https://github.com/python/cpython/commit/dd37e85518bb5f3c9eff44ed1dbebecdd1d2aa06 commit: dd37e85518bb5f3c9eff44ed1dbebecdd1d2aa06 branch: main author: Russell Keith-Magee <[email protected]> committer: ned-deily <[email protected]> date: 2024-05-05T22:34:59-04:00 summary:
Correct timing sensitivity in iOS testing Makefile target. (GH-118620) files: M Makefile.pre.in diff --git a/Makefile.pre.in b/Makefile.pre.in index 903227709c79ec..ddc8b2feda51c4 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -2040,7 +2040,7 @@ testuniversal: all # a full Xcode install that has an iPhone SE (3rd edition) simulator available. # This must be run *after* a `make install` has completed the build. The # `--with-framework-name` argument *cannot* be used when configuring the build. -XCFOLDER=iOSTestbed.$(MULTIARCH).$(shell date +%s) +XCFOLDER:=iOSTestbed.$(MULTIARCH).$(shell date +%s) XCRESULT=$(XCFOLDER)/$(MULTIARCH).xcresult .PHONY: testios testios: _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
