From cba45e15ae53f8ed12babfb6693d8abb9ce8f74e Mon Sep 17 00:00:00 2001 From: midipix Date: Dec 31 2018 12:26:53 +0000 Subject: build system: configure: replaced readlink(1) with the portable [ -L foo ]. --- diff --git a/configure b/configure index 914668e..1ee5f3e 100755 --- a/configure +++ b/configure @@ -72,7 +72,7 @@ init_vars() # ccenv . $mb_project_dir/sofort/ccenv/ccenv.sh - if ! readlink ./ccenv > /dev/null; then + if ! [ -L ./ccenv ]; then if [ -d ./ccenv ]; then rm -f ./ccenv/host.mk rm -f ./ccenv/native.mk