Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 362795 - libbash doesn't handle portability.eclass well
Summary: libbash doesn't handle portability.eclass well
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Hosted Projects
Classification: Unclassified
Component: libbash (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Petteri Räty (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-04-10 03:40 UTC by Mu Qiao (RETIRED)
Modified: 2011-04-11 06:15 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Mu Qiao (RETIRED) gentoo-dev 2011-04-10 03:40:48 UTC
treecopy() {
	dest=${!#}
	files_count=$#

	while(( $# > 1 )); do
		shift
	done
}
The above piece can't be handled well.
Specifically, ${!#} and while(( $# > 1 )) can't be interpreted.