diff options
author | midipix <writeonce@midipix.org> | 2018-12-31 07:25:37 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-31 07:26:54 -0500 |
commit | acb07c0db7edbfb796857c790b251fd19a549457 (patch) | |
tree | 1d229f21c67f307e36a2a5428db81b6253eadfb9 | |
parent | f9a2f314a4bc4318d2bd952b3c6c1213e7e9850d (diff) | |
download | w32lib-acb07c0db7edbfb796857c790b251fd19a549457.tar.bz2 w32lib-acb07c0db7edbfb796857c790b251fd19a549457.tar.xz |
build system: configure: replaced readlink(1) with the portable [ -L foo ].
-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 |