diff options
author | Reto Buerki <reet@codelabs.ch> | 2013-11-28 09:37:55 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2013-12-04 10:42:03 +0100 |
commit | d33df7ed518c7f35b423b6d0890cbfed1da4b658 (patch) | |
tree | 72db2029a29b6e587ac0da7d208591581727e4d5 | |
parent | 8416ebb62895ecf2a5dbf0f771b31f704d7d2406 (diff) | |
download | strongswan-d33df7ed518c7f35b423b6d0890cbfed1da4b658.tar.bz2 strongswan-d33df7ed518c7f35b423b6d0890cbfed1da4b658.tar.xz |
charon-tkm: Abort if gprbuild binary is not found
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index a3fb71274..34836d6b6 100644 --- a/configure.ac +++ b/configure.ac @@ -939,6 +939,9 @@ CFLAGS="$CFLAGS -include `pwd`/config.h" if test x$tkm = xtrue; then AC_PATH_PROG([GPRBUILD], [gprbuild], [], [$PATH:/bin:/usr/bin:/usr/local/bin]) + if test x$GPRBUILD = x; then + AC_MSG_ERROR([gprbuild not found]) + fi fi if test x$coverage = xtrue; then |