diff options
author | Grigory Kramarenko <djbaldey@gmail.com> | 2014-10-10 02:40:35 +1100 |
---|---|---|
committer | Grigory Kramarenko <djbaldey@gmail.com> | 2014-10-10 02:40:35 +1100 |
commit | 0e4be146703bbde48ba784c71733df696acc39e4 (patch) | |
tree | 1245e4151902502c6dba4dd3d8689d5f0ce271e6 | |
parent | e2a9114cb3409037085fc00f55e82ec2afe37716 (diff) | |
download | vyos-live-build-0e4be146703bbde48ba784c71733df696acc39e4.tar.gz vyos-live-build-0e4be146703bbde48ba784c71733df696acc39e4.zip |
Fix bug: linux versions in the system with russian locale not parse.tmp-djbaldey
-rwxr-xr-x | scripts/build/binary_syslinux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/binary_syslinux b/scripts/build/binary_syslinux index abd900ac1..e2d79e90b 100755 --- a/scripts/build/binary_syslinux +++ b/scripts/build/binary_syslinux @@ -296,7 +296,7 @@ _HOUR="$(date +%H)" _MINUTE="$(date +%M)" _SECOND="$(date +%S)" -_LINUX_VERSIONS="$(for _LINUX in chroot/boot/vmlinuz-* ; do chroot chroot apt-cache policy $(basename ${_LINUX} | sed -e 's|vmlinuz-|linux-image-|') | awk '/Installed: / { print $2 }' ; done | sort -Vru | tr "\n" " ")" +_LINUX_VERSIONS="$(for _LINUX in chroot/boot/vmlinuz-* ; do chroot chroot apt-cache show $(basename ${_LINUX} | sed -e 's|vmlinuz-|linux-image-|') | awk '/Version: / { print $2 }' ; done | sort -Vru | tr "\n" " ")" _LIVE_BUILD_VERSION="$(lb --version)" _LIVE_BOOT_VERSION="$(chroot chroot apt-cache policy live-boot | awk '/Installed: / { print $2 }')" |