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 | cba45e15ae53f8ed12babfb6693d8abb9ce8f74e (patch) | |
tree | 0f8d1a14ebfc62c570a8cdfd844be2720af17323 /configure | |
parent | 69bae7c10fe223e14b260798bad06887cf39a364 (diff) | |
download | sbpython2-cba45e15ae53f8ed12babfb6693d8abb9ce8f74e.tar.bz2 sbpython2-cba45e15ae53f8ed12babfb6693d8abb9ce8f74e.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 |