We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa924c1 commit bfe51a2Copy full SHA for bfe51a2
1 file changed
crossdev
@@ -21,7 +21,13 @@ EROOT=${ROOT%/}"${EPREFIX}"/
21
: ${PORTAGE_CONFIGROOT:=${EROOT}}
22
CONFIGROOT="${PORTAGE_CONFIGROOT}/etc/portage"
23
24
+# Prevent functions.sh from complaining about command line arguments like -C,
25
+# which has a different meaning for crossdev.
26
+declare -a ARGV=( "${@}" )
27
+set --
28
source "${EPREFIX}"/lib/gentoo/functions.sh || exit 1
29
+set -- "${ARGV[@]}"
30
+
31
esyslog() { :; }
32
die_logs() {
33
echo
0 commit comments