FS#31557 - Merge installing makedepends and checkdepends
Attached to Project:
Pacman
Opened by Allan McRae (Allan) - Saturday, 15 September 2012, 14:48 GMT
Last edited by Allan McRae (Allan) - Thursday, 18 December 2014, 10:32 GMT
Opened by Allan McRae (Allan) - Saturday, 15 September 2012, 14:48 GMT
Last edited by Allan McRae (Allan) - Thursday, 18 December 2014, 10:32 GMT
|
Details
Summary and Info:
Currently the buildtime dependencies (makedepends and checkdepends) are installed in two different transactions: ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Installing missing dependencies... (makedepends) ==> Installing missing dependencies... (checkdepends) I would make sense to merge these. |
This task depends upon
Closed by Allan McRae (Allan)
Thursday, 18 December 2014, 10:32 GMT
Reason for closing: Fixed
Additional comments about closing: a774e4d5e26f6
Thursday, 18 December 2014, 10:32 GMT
Reason for closing: Fixed
Additional comments about closing: a774e4d5e26f6
array+=("${anotherarray[@]}")
This is how you append.
It definitely works without the quotes. What's the difference? I'll adjust my patch before I send it again.
$ a=(one two three)
$ b=(four five six)
$ a+=${b[@]}
$ printf %s\\n "${a[@]}"
onefour five six
two
three
The point isn't the quotes (those I'm not interested in a patch that doesn't quote the expansion), but the parenthesis around the appended elements.