summaryrefslogtreecommitdiff
path: root/src/build.sh
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-07-30 18:36:34 +0000
committerdavidovski <david@davidovski.xyz>2022-07-30 18:36:34 +0000
commite7b2de40c6d03f3a5b4fb3906ef826ad169a7cb2 (patch)
tree6fbd6b2465552826c740c7efd5c492c865b1bfec /src/build.sh
parentd24c110caab48002edb5a3e2c41876e6e0a7a6ed (diff)
sysroot is now included in functions themselvesv1.7.2
Diffstat (limited to 'src/build.sh')
-rw-r--r--src/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build.sh b/src/build.sh
index 89d2bf3..614924b 100644
--- a/src/build.sh
+++ b/src/build.sh
@@ -49,7 +49,7 @@ get_revision () {
# return the installed revision of the given package
#
get_installed_revision () {
- local infofile=${INSTALLED_DIR}/$1/info
+ local infofile=${SYSROOT}${INSTALLED_DIR}/$1/info
[ -f $infofile ] && {
sed -rn "s/^REVISION=(.*)$/\1/p" $infofile
}