Skip to content
Snippets Groups Projects
Commit 4aee935d authored by Natanael Copa's avatar Natanael Copa
Browse files

abuild: move the pkgdir to pkg/<name>

where <pkg> is package/subpackage name
parent f3857a4d
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ abuild_ver=1.14
startdir="$PWD"
srcdir=${srcdir:-"$startdir/src"}
pkgdir=${pkgdir:-"$startdir/pkg"}
pkgdirbase=${pkgdirbase:-"$startdir/pkg"}
pkgrel=0
repo=${startdir%/*}
repo=${repo##*/}
......@@ -260,7 +260,7 @@ subpkg() {
local func=$(get_split_func $i)
# call abuild recursively, setting subpkg{dir,name}
msg "Running split function $func..."
subpkgdir="$startdir/pkg-$func" subpkgname="${i%:*}" \
subpkgdir="$pkgdirbase/${i%:*}" subpkgname="${i%:*}" \
$0 $func package || return 1
done
}
......@@ -800,6 +800,7 @@ if [ -n "$subpkgname" ]; then
subpackages=
install=
fi
pkgdir="${pkgdirbase}/$pkgname"
trap 'die "Aborted by user"' INT
set_xterm_title "abuild: $pkgname"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment