xref: /OK3568_Linux_fs/buildroot/support/dependencies/check-host-coreutils.sh (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1#!/bin/sh
2
3# Exit on the first error
4set -e
5
6# Does ln supports the --relative/-r option?
7ln --relative --help >/dev/null 2>&1
8
9# Does realpath exist?
10realpath --help >/dev/null 2>&1
11
12echo OK
13