File tree 1 file changed +14
-0
lines changed
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -299,6 +299,16 @@ bootstrap_setup() {
299
299
echo " USE=\"\$ {USE} ${MAKE_CONF_ADDITIONAL_USE} \" "
300
300
[[ ${OFFLINE_MODE} ]] && \
301
301
echo ' FETCHCOMMAND="bash -c \"echo I need \${FILE} from \${URI} in \${DISTDIR}; read\""'
302
+
303
+ if [[ ${CHOST} == i* 86-apple-darwin9 ]] ; then
304
+ # There's no legitimate reason to use 10.5 with x86 (10.6 and
305
+ # 10.7 run on every device that ever ran 10.5 x86) but it's
306
+ # vastly easier to access and faster than ppc. Don't want to
307
+ # burden the tree with this aid-arch, so just use the ppc
308
+ # keyword.
309
+ echo
310
+ echo ' ACCEPT_KEYWORDS="~ppc-macos"'
311
+ fi
302
312
} > " ${MAKE_CONF_DIR} /0100_bootstrap_prefix_make.conf"
303
313
fi
304
314
@@ -357,6 +367,10 @@ bootstrap_profile() {
357
367
rev=${CHOST##* darwin}
358
368
profile=" prefix/darwin/macos/10.$(( rev - 4 )) /ppc"
359
369
;;
370
+ i* 86-apple-darwin9)
371
+ rev=${CHOST##* darwin}
372
+ profile=" prefix/darwin/macos/10.$(( rev - 4 )) /x32"
373
+ ;;
360
374
i* 86-apple-darwin1[578])
361
375
eerror " REMOVED ARCH: this 32-bit MacOS architecture was removed,"
362
376
eerror " bootstrapping is impossible"
You can’t perform that action at this time.
0 commit comments