From ce8e9e9e4793c55581b08960048e14075fa8e927 Mon Sep 17 00:00:00 2001 From: midipix Date: Mon, 31 Dec 2018 07:25:37 -0500 Subject: build system: configure: replaced readlink(1) with the portable [ -L foo ]. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') 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 -- cgit v1.2.3