mirror of https://github.com/ArduPilot/ardupilot
Tools: correct check for realpath
This commit is contained in:
parent
ee01687c55
commit
d320e8517d
|
@ -87,8 +87,8 @@ else
|
|||
fi
|
||||
|
||||
RP=$(apt-cache search -n '^realpath$')
|
||||
if -n "$RP"; then
|
||||
SITL_PKGS+=" realpath"
|
||||
if [ -n "$RP" ]; then
|
||||
BASE_PKGS+=" realpath"
|
||||
fi
|
||||
|
||||
$APT_GET install $BASE_PKGS $SITL_PKGS $PX4_PKGS $ARM_LINUX_PKGS
|
||||
|
|
Loading…
Reference in New Issue