diff options
author | midipix <writeonce@midipix.org> | 2018-12-31 07:25:37 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-31 07:26:53 -0500 |
commit | 34c1af8c9ef246e847f7a75319dd2125ff783206 (patch) | |
tree | eaf534300e244c4b60258193f5056b0e4ed601ed | |
parent | 4ddf9717cddbaacd2d05e2c3599a30344935cd21 (diff) | |
download | sbpython3-34c1af8c9ef246e847f7a75319dd2125ff783206.tar.bz2 sbpython3-34c1af8c9ef246e847f7a75319dd2125ff783206.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 |