diff options
author | midipix <writeonce@midipix.org> | 2018-12-31 07:25:37 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-31 21:37:16 -0500 |
commit | ce8e9e9e4793c55581b08960048e14075fa8e927 (patch) | |
tree | 724c5da2aa18febff3428a417e6c78e51f1e54e6 | |
parent | 7f70984d85fd7efd3257e0af3a08b25be87bebee (diff) | |
download | perk-ce8e9e9e4793c55581b08960048e14075fa8e927.tar.bz2 perk-ce8e9e9e4793c55581b08960048e14075fa8e927.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 |