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 | 613972c224e14e76c8a1bb6887bbf8104faccf6f (patch) | |
tree | a4dfdf17800326469c2da191323c4702fadc880d | |
parent | 3d48d587fbee278e2362f482af1ab6353b3fc35d (diff) | |
download | u16ports-613972c224e14e76c8a1bb6887bbf8104faccf6f.tar.bz2 u16ports-613972c224e14e76c8a1bb6887bbf8104faccf6f.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 |