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 | dc9a248b1bd0a3330becc559edb00dfee3da0a1c (patch) | |
tree | bad8ab878cb075a4dcc9215ba39445e2e0909fab /configure | |
parent | e6c9c83912efb1bb5ce3b14f385891a26dad541f (diff) | |
download | sofort-dc9a248b1bd0a3330becc559edb00dfee3da0a1c.tar.bz2 sofort-dc9a248b1bd0a3330becc559edb00dfee3da0a1c.tar.xz |
build system: configure: replaced readlink(1) with the portable [ -L foo ].
Diffstat (limited to 'configure')
-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 |