File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
swift_build_support/swift_build_support/products Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -57,12 +57,10 @@ case $(uname -s) in
57
57
Darwin)
58
58
SWIFT_PACKAGE=buildbot_osx_package
59
59
OS_SUFFIX=osx
60
- BUILD_SUBDIR=buildbot_osx
61
60
;;
62
61
Linux)
63
62
SWIFT_PACKAGE=buildbot_linux
64
63
OS_SUFFIX=linux
65
- BUILD_SUBDIR=buildbot_linux
66
64
;;
67
65
* )
68
66
echo " Unrecognised platform $( uname -s) "
@@ -136,7 +134,7 @@ DISPLAY_NAME_SHORT="Local Swift Development Snapshot"
136
134
DISPLAY_NAME=" ${DISPLAY_NAME_SHORT} ${YEAR} -${MONTH} -${DAY} "
137
135
138
136
SWIFT_INSTALLABLE_PACKAGE=" ${RESULT_DIR} /${ARCHIVE} "
139
- SWIFT_INSTALL_DIR=" ${RESULT_DIR} /${BUILD_SUBDIR} "
137
+ SWIFT_INSTALL_DIR=" ${RESULT_DIR} /swift-nightly-install "
140
138
SWIFT_INSTALL_SYMROOT=" ${RESULT_DIR} /swift-nightly-symroot"
141
139
SWIFT_TOOLCHAIN_DIR=" /Library/Developer/Toolchains/${TOOLCHAIN_NAME} .xctoolchain"
142
140
SYMBOLS_PACKAGE=" ${RESULT_DIR} /${SYM_ARCHIVE} "
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ def host_install_destdir(self, host_target):
224
224
# If this is one of the hosts we should lipo,
225
225
# install in to a temporary subdirectory.
226
226
return '%s/intermediate-install/%s' % \
227
- (self . args . install_destdir , host_target )
227
+ (os . path . dirname ( self . build_dir ) , host_target )
228
228
elif host_target == "merged-hosts" :
229
229
# This assumes that all hosts are merged to the lipo.
230
230
return self .args .install_destdir
You can’t perform that action at this time.
0 commit comments