mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-07 01:32:26 +01:00
Ref https://gitlab.alpinelinux.org/alpine/abuild/-/merge_requests/399 Ref https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/85759
15 lines
326 B
Diff
15 lines
326 B
Diff
Always execute subpackage split functions in $pkgdir. This allows amove
|
|
arguments to be safely globbed before calling.
|
|
|
|
--- a/abuild.in
|
|
+++ b/abuild.in
|
|
@@ -933,6 +933,8 @@ pre_split() {
|
|
# the subpackages should not inherit these from main package
|
|
provides=""
|
|
install_if=""
|
|
+
|
|
+ cd "$pkgdir"
|
|
}
|
|
|
|
prepare_subpackages() {
|