diff options
author | midipix <writeonce@midipix.org> | 2018-12-31 07:25:37 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-31 07:25:37 -0500 |
commit | 8c2d939bc988993545257f3fa9cded988965698d (patch) | |
tree | ca93c31833cb7f9619a3afe4159f658b1b455a4f | |
parent | d08441a1f367793462c8fa921857674b57b0c38b (diff) | |
download | pemagine-8c2d939bc988993545257f3fa9cded988965698d.tar.bz2 pemagine-8c2d939bc988993545257f3fa9cded988965698d.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 |