diff options
author | midipix <writeonce@midipix.org> | 2016-02-27 15:54:56 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-02-27 16:16:52 -0500 |
commit | e0479c10e8261bd60da2c0dcfab024255a6f92eb (patch) | |
tree | 948dc318c5c3600ab1cb3c5c06b7edd30d9c2d27 /sysinfo/host | |
parent | 1c1bf28a79c4ad75e6bb04e81f0f7a86fe1111ab (diff) | |
download | pemagine-e0479c10e8261bd60da2c0dcfab024255a6f92eb.tar.bz2 pemagine-e0479c10e8261bd60da2c0dcfab024255a6f92eb.tar.xz |
build system: configure, host.sh: use modern portable shell idioms.
Diffstat (limited to 'sysinfo/host')
-rwxr-xr-x | sysinfo/host/host.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysinfo/host/host.sh b/sysinfo/host/host.sh index 1fe2515..9caa07b 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 |