index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
-rwxr-xr-x | bin/build-packages | 2 | ||||
-rwxr-xr-x | lib/mysql-functions | 4 |
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" |