Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 219286 | Differences between
and this patch

Collapse All | Expand All

(-)bin/misc-functions.sh (-1 / +2 lines)
Lines 377-383 Link Here
377
		rm -Rf "${root}"/${no_inst} >&/dev/null
377
		rm -Rf "${root}"/${no_inst} >&/dev/null
378
378
379
		# we also need to handle globs (*.a, *.h, etc)
379
		# we also need to handle globs (*.a, *.h, etc)
380
		find "${root}" -path "${no_inst}" -exec rm -fR {} \; >/dev/null
380
		find "${root}" \( -path "${no_inst}" -or -name "${no_inst}" \) \
381
			-exec rm -fR {} \; >/dev/null
381
	done
382
	done
382
	# set everything back the way we found it
383
	# set everything back the way we found it
383
	set +o noglob
384
	set +o noglob
(-)pym/portage.py (+5 lines)
Lines 1098-1104 Link Here
1098
		"XARGS",
1098
		"XARGS",
1099
	]
1099
	]
1100
1100
1101
	# user config variables
1101
	_environ_whitelist += [
1102
	_environ_whitelist += [
1103
		"DOC_SYMLINKS_DIR", "INSTALL_MASK", "PKG_INSTALL_MASK"
1104
	]
1105
1106
	_environ_whitelist += [
1102
		"A", "AA", "CATEGORY", "P", "PF", "PN", "PR", "PV", "PVR"
1107
		"A", "AA", "CATEGORY", "P", "PF", "PN", "PR", "PV", "PVR"
1103
	]
1108
	]
1104
1109
(-)bin/isolated-functions.sh (+3 lines)
Lines 485-490 Link Here
485
			ROOT ROOTPATH RPMDIR STARTDIR TMP TMPDIR USE_EXPAND \
485
			ROOT ROOTPATH RPMDIR STARTDIR TMP TMPDIR USE_EXPAND \
486
			WARN XARGS _RC_GET_KV_CACHE
486
			WARN XARGS _RC_GET_KV_CACHE
487
487
488
		# user config variables
489
		unset DOC_SYMLINKS_DIR INSTALL_MASK PKG_INSTALL_MASK
490
488
		set
491
		set
489
		export
492
		export
490
	)
493
	)

Return to bug 219286