diff options
author | midipix <writeonce@midipix.org> | 2018-12-31 07:25:37 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-31 07:26:52 -0500 |
commit | b9dba17a3757e7080ed9c00c0d46d304b8814c1b (patch) | |
tree | 0fb4f9e65930f2b11f5aa32df2865046ee0f2075 /configure | |
parent | a4d33700116d713ce7381965ef0aa596d4492dde (diff) | |
download | bfirm-b9dba17a3757e7080ed9c00c0d46d304b8814c1b.tar.bz2 bfirm-b9dba17a3757e7080ed9c00c0d46d304b8814c1b.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 |