diff options
author | midipix <writeonce@midipix.org> | 2018-12-31 07:25:37 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-31 07:26:52 -0500 |
commit | 19dcd9a7e89b8d5b699fa111b91649d6e42e9243 (patch) | |
tree | 9d74ce71d2bad50630c14efe1579be3015fb0ae4 /configure | |
parent | 8fd4aa75b8d13c89bcfac953a54105df5a2edb33 (diff) | |
download | ntcon-19dcd9a7e89b8d5b699fa111b91649d6e42e9243.tar.bz2 ntcon-19dcd9a7e89b8d5b699fa111b91649d6e42e9243.tar.xz |
build system: configure: replaced readlink(1) with the portable [ -L foo ].
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |