diff options
author | midipix <writeonce@midipix.org> | 2016-02-26 18:20:41 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-02-27 10:58:06 -0500 |
commit | f7f42eaeff36df19514071ee2e811502c438d8bc (patch) | |
tree | 28f9c2e7559420aaa10aeffcce50881e4ba5f6c7 /sysinfo | |
parent | dc909fec64be7e1fb0eb74e4f9a99ad514d4cf1d (diff) | |
download | sofort-f7f42eaeff36df19514071ee2e811502c438d8bc.tar.bz2 sofort-f7f42eaeff36df19514071ee2e811502c438d8bc.tar.xz |
build system: configure, host.sh: use modern portable shell idioms.
Diffstat (limited to 'sysinfo')
-rwxr-xr-x | sysinfo/host/host.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysinfo/host/host.sh b/sysinfo/host/host.sh index 5d963c9..e4079ee 100755 --- a/sysinfo/host/host.sh +++ b/sysinfo/host/host.sh @@ -10,7 +10,7 @@ host_test() mb_hdrdir=$(pwd)/build mkdir -p $mb_hdrdir || exit 2 - if [ x"$mb_compiler" = x ]; then + if [ -z "$mb_compiler" ]; then echo "config error: compiler not set." exit 2 fi @@ -42,7 +42,7 @@ host_endian_h() -E - > /dev/null 2>/dev/null \ && mb_hosthdr='machine/'$mb_header - if [ x"$mb_hosthdr" = x ]; then + if [ -z "$mb_hosthdr" ]; then error_msg "config error: could not find an alternate <$mb_header>." exit 2 fi |