summaryrefslogtreecommitdiff
path: root/build_abi.sh
diff options
context:
space:
mode:
authorNick Desaulniers <ndesaulniers@google.com>2019-07-22 12:28:58 -0700
committerNick Desaulniers <ndesaulniers@google.com>2019-07-22 12:28:58 -0700
commitb6e81cd989f881764d4a52b2ab19e9b44c6c0ee5 (patch)
treeeca280084d38119ba4ada92a3a23c889e2715ecf /build_abi.sh
parent8bc4f60653ffac3e9447e71426b5fd4be6603423 (diff)
build_abi: add build/ to the path for error msg
Change-Id: I5328a49e8f0e6081f7436f67bdd2cd97c3d949d8 Signed-off-by: Nick Desaulniers <ndesaulniers@google.com>
Diffstat (limited to 'build_abi.sh')
-rwxr-xr-xbuild_abi.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_abi.sh b/build_abi.sh
index e612286..d276c50 100755
--- a/build_abi.sh
+++ b/build_abi.sh
@@ -46,7 +46,7 @@ function version_greater_than() {
# ensure that abigail is present in path
if ! ( hash abidiff 2>/dev/null); then
echo "ERROR: libabigail is not found in \$PATH at all!"
- echo "Have you run abi/bootstrap and followed the instructions?"
+ echo "Have you run build/abi/bootstrap and followed the instructions?"
exit 1
fi
@@ -54,7 +54,7 @@ fi
if ! ( version_greater_than "$(abidiff --version | awk '{print $2}')" \
"1.6.0" ); then
echo "ERROR: no suitable libabigail (>= 1.6.0) in \$PATH."
- echo "Have you run abi/bootstrap and followed the instructions?"
+ echo "Have you run build/abi/bootstrap and followed the instructions?"
exit 1
fi