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 | 52003275ba00b9b577dd044d20ae313b563da37e (patch) | |
tree | a97213b36d289febb5969852be5f792bf45d66da | |
parent | a626b81b93ce60a1b2194da06feccfd62265cfac (diff) | |
download | ptycon-52003275ba00b9b577dd044d20ae313b563da37e.tar.bz2 ptycon-52003275ba00b9b577dd044d20ae313b563da37e.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 |