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 | 4943b48b4b1ed51ff265856e445e83fef0d798cd (patch) | |
tree | ffce229ef6b409306dc039f7225c66cd1b84e2d0 | |
parent | 456802c7eb9a93bdba966aac22636f6bd3014a37 (diff) | |
download | ntapi-4943b48b4b1ed51ff265856e445e83fef0d798cd.tar.bz2 ntapi-4943b48b4b1ed51ff265856e445e83fef0d798cd.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 |