diff options
author | Erich Eckner <git@eckner.net> | 2018-09-11 13:44:28 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-09-11 13:44:28 +0200 |
commit | 60c87c316703b7e68e19b205782e0fad669deb73 (patch) | |
tree | cd9c59ba6971469eccf3dda1b9b6c56c64072c29 | |
parent | 7ab34eca0722ab510c2c247536d134c02f55e335 (diff) | |
download | builder-60c87c316703b7e68e19b205782e0fad669deb73.tar.xz |
lib/mysql-functions: allow i486
-rwxr-xr-x | bin/build-packages | 2 | ||||
-rwxr-xr-x | lib/mysql-functions | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/build-packages b/bin/build-packages index b576138..d6a2ede 100755 --- a/bin/build-packages +++ b/bin/build-packages @@ -7,7 +7,7 @@ # shellcheck source=../lib/load-configuration . "${0%/*}/../lib/load-configuration" -# TODO: build other 'architectures', too (pentium4, i486) +# TODO: distinguish between "pentium3" and "i686" # TODO: report back memory and hdd stats to the build master on successful build diff --git a/lib/mysql-functions b/lib/mysql-functions index 37635d5..df51aed 100755 --- a/lib/mysql-functions +++ b/lib/mysql-functions @@ -238,11 +238,11 @@ mysql_generate_package_metadata() { exit 2 fi # remove empty lines and unsupported architectures - # TODO: support more architectures + # TODO: support "pentium3" architecture, too sed -i ' /^[^=]*=\s*$/d /^\s*arch = /{ - / \(i686\|any\)$/!d + / \(i[46]86\|any\)$/!d } ' "${temp_dir}/SRCINFO" |