aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2015-11-17 18:52:05 -0500
committerKevin O'Connor <kevin@koconnor.net>2015-11-19 08:48:34 -0500
commit964c77462b5ab7acd1d4c123c1c13f633ab24b1a (patch)
treee604e965cbbb9c732183b9f1632286f5cb96c23e /scripts
parent4373afaef34a76733638edc4e98f355b13c52f10 (diff)
downloadseabios-hppa-964c77462b5ab7acd1d4c123c1c13f633ab24b1a.zip
seabios-hppa-964c77462b5ab7acd1d4c123c1c13f633ab24b1a.tar.gz
seabios-hppa-964c77462b5ab7acd1d4c123c1c13f633ab24b1a.tar.bz2
acpi: Remove build check for iasl
The iasl program is no longer used on a default build. Do not require it to be installed. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/test-build.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/test-build.sh b/scripts/test-build.sh
index 081f9fd..25cc2f2 100755
--- a/scripts/test-build.sh
+++ b/scripts/test-build.sh
@@ -1,19 +1,6 @@
#!/bin/sh
# Script to test if the build works properly.
-# Test IASL is installed.
-$IASL -h > /dev/null 2>&1
-if [ $? -ne 0 ]; then
- echo "The SeaBIOS project requires the 'iasl' package be installed." >&2
- echo "Many Linux distributions have this package." >&2
- echo "Try: sudo yum install iasl" >&2
- echo "Or: sudo apt-get install iasl" >&2
- echo "" >&2
- echo "Please install iasl and retry." >&2
- echo -1
- exit 0
-fi
-
mkdir -p ${OUT}
TMPFILE1=${OUT}/tmp_testcompile1.c
TMPFILE1o=${OUT}/tmp_testcompile1.o