From 421419c7fc96df18c422102a52879dd6860725a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 10 Aug 2015 21:31:17 +0200 Subject: Getting rid of hard-coded release numbers and using /etc/os-release instead (Closes: #790860). Unfortunately VERSION_ID on testing/unstable is currently not included in /etc/os-release, see #795124. --- scripts/build/binary_disk | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'scripts/build/binary_disk') diff --git a/scripts/build/binary_disk b/scripts/build/binary_disk index 4f444b0be..7175a543a 100755 --- a/scripts/build/binary_disk +++ b/scripts/build/binary_disk @@ -51,7 +51,13 @@ mkdir -p binary/.disk ARCHITECTURE="$(echo ${LB_ARCHITECTURES} | sed -e 's| |/|g')" DISTRIBUTION="$(echo ${LB_DISTRIBUTION} | cut -b 1 | tr '[a-z]' '[A-Z]')" DISTRIBUTION="${DISTRIBUTION}$(echo ${LB_DISTRIBUTION} | cut -b 2-)" -eval VERSION="$`echo RELEASE_${LB_DISTRIBUTION}`" + +if [ -e chroot/etc/os-release ] +then + VERSION="$(. chroot/etc/os-release && echo ${VERSION_ID})" +fi + +VERSION="${VERSION:-none}" case "${LB_MODE}" in debian) -- cgit v1.2.3