diff options
author | Erich Eckner <git@eckner.net> | 2019-07-10 13:09:59 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-07-10 13:09:59 +0200 |
commit | 55c0d3a0ee9f78c31c675f0d995bfb565415095b (patch) | |
tree | f5742d6b031fac265a918caf8ba7422a115c739b | |
parent | 25e1ed3574aeb82ce319ac82f98527e0526fdda9 (diff) | |
download | archlinuxewe-55c0d3a0ee9f78c31c675f0d995bfb565415095b.tar.xz |
report-installed-packages.PKGBUILDpatch: report also for i486 and pentium4
-rw-r--r-- | report-installed-packages.PKGBUILDpatch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/report-installed-packages.PKGBUILDpatch b/report-installed-packages.PKGBUILDpatch index 2357d625b..2c71950a2 100644 --- a/report-installed-packages.PKGBUILDpatch +++ b/report-installed-packages.PKGBUILDpatch @@ -1,6 +1,6 @@ # report installed packages at end of package() function - if the build process succeeded, # these packages should work -if [ "${CARCH}" = "i686" ]; then +if [ "${CARCH}" = "i486" ] || [ "${CARCH}" = "i686" ] || [ "${CARCH}" = "pentium4" ]; then sudo report-installed-packages archlinux-reports@eckner.net buildmaster@archlinux32.org fi |