summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2024-06-05 11:07:53 +0100
committerLeah Rowe <leah@libreboot.org>2024-06-05 11:07:53 +0100
commit75382a4126f1994dd9ff1009ac084369d2b80d13 (patch)
tree8974a85b0afd7a9d4a7a7a6eac7f38b64d305259 /build
parentc6aff76931cb3fb2694676ab360cb165967883c0 (diff)
bugfix: move dependencies handling to lib.sh
do it strategically, in just the right place so that the version and versiondate files aren't written. otherwise, version/versiondate are written as root and the build system becomes unusable after that, unless you reset the file ownerships from root. hardly user-friendly. mitigate this bug. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'build')
-rwxr-xr-xbuild15
1 files changed, 1 insertions, 14 deletions
diff --git a/build b/build
index 10982423..1fdc69c4 100755
--- a/build
+++ b/build
@@ -16,7 +16,7 @@ fi
. "include/vendor.sh"
. "include/mrc.sh"
-eval "$(setvars "" aur_notice vdir src_dirname srcdir _xm mode xp)"
+eval "$(setvars "" vdir src_dirname srcdir _xm mode xp)"
err="fail"
linkpath="${0}"
@@ -28,8 +28,6 @@ main()
[ $# -lt 1 ] && badcmd
spath="script/$1"
- [ "$1" = "dependencies" ] && x_ install_packages $@ && return 0
-
[ "$(id -u)" != "0" ] || $err "this command as root is not permitted"
for g in "which git" "git config --global user.name" \
@@ -49,17 +47,6 @@ main()
set -u -e # some commands disable them. turn them on!
}
-install_packages()
-{
- [ $# -lt 2 ] && badcmd "fewer than two arguments"
- [ -f "config/dependencies/$2" ] || badcmd "unsupported target"
-
- . "config/dependencies/$2"
-
- x_ $pkg_add $pkglist && [ -n "$aur_notice" ] && \
- printf "You need AUR packages: %s\n" "$aur_notice" 1>&2; return 0
-}
-
git_init()
{
[ -L ".git" ] && return 1