diff options
author | Nicholas Humfrey <njh@aelius.com> | 2019-02-02 15:34:35 +0000 |
---|---|---|
committer | Nicholas Humfrey <njh@aelius.com> | 2019-02-02 15:34:35 +0000 |
commit | 274ebdb02582cc52237c95b1884b1cb24884d6f1 (patch) | |
tree | b27683f84b0c25e8db993d6c6183262fa0965657 /scripts/build-flavour | |
parent | 6d01d376da422d20529f329b0995cf00bb003416 (diff) | |
download | vyos-build-274ebdb02582cc52237c95b1884b1cb24884d6f1.tar.gz vyos-build-274ebdb02582cc52237c95b1884b1cb24884d6f1.zip |
Changed architecture name for 32-bit x86 to 'i386'
This is the official Debian designation for the architecture
(And what dpkg --print-architecture returns)
https://www.debian.org/releases/stable/i386/ch02s01.html.en
Diffstat (limited to 'scripts/build-flavour')
-rwxr-xr-x | scripts/build-flavour | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-flavour b/scripts/build-flavour index c14f5735..5e76672b 100755 --- a/scripts/build-flavour +++ b/scripts/build-flavour @@ -27,7 +27,7 @@ if [ $BUILD_TYPE = "development" ]; then fi # Install grub-pc if it's an x86 build -if [ $BUILD_ARCH = 'amd64' -o $BUILD_ARCH = 'i686' ]; then +if [ $BUILD_ARCH = 'amd64' -o $BUILD_ARCH = 'i386' ]; then cp data/package-lists/vyos-x86.list.chroot build/config/package-lists/ fi |