diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-12-30 23:01:19 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-12-30 23:01:55 (EST) |
commit | fcb70880b49318e3d4324832a7e0353fc29f3dd0 (patch) | |
tree | d595e6dc1c302397e51caac0cc0debca56aedf1e | |
parent | a8af3635021236e2c50de7cc24a46489854910e1 (diff) | |
download | libreboot-fcb70880b49318e3d4324832a7e0353fc29f3dd0.zip libreboot-fcb70880b49318e3d4324832a7e0353fc29f3dd0.tar.gz libreboot-fcb70880b49318e3d4324832a7e0353fc29f3dd0.tar.bz2 |
ich9macchange: fix incorrect error message
-rwxr-xr-x | ich9macchange | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ich9macchange b/ich9macchange index 8ee9701..d3200b2 100755 --- a/ich9macchange +++ b/ich9macchange @@ -28,7 +28,7 @@ elif [ $(uname -i) = "x86_64" ] || [ $(uname -m) = "x86_64" ]; then elif [ $(uname -i) = "armv7l" ] || [ $(uname -m) = "armv7l" ]; then arch="armv7l" else - echo "This script must be run on an i686 or x86_64 host. x86_64 is recommended." + echo "This script must be run on an i686, x86_64 or armv7l host." exit 1 fi |