Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 859980 Details for
Bug 904242
bootstrap-prefix.sh in stage 1 should use tools from prefix as much as possible
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Final patch I made before creating this bug
final_patch (text/plain), 1.40 KB, created by
Andrey Aleksandrov
on 2023-04-12 22:46:52 UTC
(
hide
)
Description:
Final patch I made before creating this bug
Filename:
MIME Type:
Creator:
Andrey Aleksandrov
Created:
2023-04-12 22:46:52 UTC
Size:
1.40 KB
patch
obsolete
>diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh >index c032f7424a..1dfb90b52d 100755 >--- a/scripts/bootstrap-prefix.sh >+++ b/scripts/bootstrap-prefix.sh >@@ -673,13 +673,13 @@ bootstrap_portage() { > fix_config_sub > > # disable ipc >- sed -e "s:_enable_ipc_daemon = True:_enable_ipc_daemon = False:" \ >+ ${ROOT}/tmp/bin/sed -e "s:_enable_ipc_daemon = True:_enable_ipc_daemon = False:" \ > -i lib/_emerge/AbstractEbuildProcess.py || \ > return 1 > > # host-provided wget may lack certificates, stage1 wget is without ssl > [[ $(wget -h) == *"--no-check-certificate"* ]] && >- sed -e '/wget/s/ --passive-ftp /&--no-check-certificate /' -i cnf/make.globals >+ ${ROOT}/tmp/bin/sed -e '/wget/s/ --passive-ftp /&--no-check-certificate /' -i cnf/make.globals > > # Portage checks for valid shebangs. These may (xz-utils) originate > # in CONFIG_SHELL (AIX), which originates in PORTAGE_BASH then. >@@ -690,6 +690,11 @@ bootstrap_portage() { > [[ -x ${ROOT}/tmp/bin/bash ]] || ln -s "${BASH}" "${ROOT}"/tmp/bin/bash || return 1 > [[ -x ${ROOT}/tmp/bin/sh ]] || ln -s bash "${ROOT}"/tmp/bin/sh || return 1 > export PORTAGE_BASH="${ROOT}"/tmp/bin/bash >+ export PREFIX_PORTAGE_PYTHON=${ROOT}/tmp/bin/python >+ export PORTAGE_SED=${ROOT}/tmp/bin/sed >+ export PORTAGE_FIND=${ROOT}/tmp/bin/find >+ export PORTAGE_XARGS=${ROOT}/tmp/bin/xargs >+ export INSTALL=${ROOT}/tmp/bin/install > > einfo "Compiling ${A%.tar.*}" > econf \
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 904242
:
859978
|
859979
|
859980
|
860170