Browse Source

Tools: install-prereqs-ubuntu: correct check for realpath

mission-4.1.18
Peter Barker 7 years ago
parent
commit
3615219c4c
  1. 3
      Tools/scripts/install-prereqs-ubuntu.sh

3
Tools/scripts/install-prereqs-ubuntu.sh

@ -86,7 +86,8 @@ else @@ -86,7 +86,8 @@ else
SITL_PKGS+=" python-wxgtk2.8"
fi
if apt-cache search realpath; then
RP=$(apt-cache search -n '^realpath$')
if -n "$RP"; then
SITL_PKGS+=" realpath"
fi

Loading…
Cancel
Save