Skip to content
Snippets Groups Projects
Commit 9ac6d095 authored by Steffen Müthing's avatar Steffen Müthing
Browse files

[Autotools] Fix error messages for --enable-* options in TBB test

parent 5e209765
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ AC_DEFUN([DUNE_PATH_TBB],[
AS_CASE(["$enableval"],
[yes], [tbb_allocator="yes"],
[no ], [tbb_allocator="no" ],
[AC_MSG_ERROR(["invalid value 'enableval' for --enable-tbb-allocator, must be 'yes' or 'no'"])
[AC_MSG_ERROR(["invalid value '$enableval' for --enable-tbb-allocator, must be 'yes' or 'no'"])
])
],
[
......@@ -32,7 +32,7 @@ AC_DEFUN([DUNE_PATH_TBB],[
AS_CASE(["$enableval"],
[yes], [tbb_rpath="yes"],
[no ], [tbb_rpath="no" ],
[AC_MSG_ERROR(["invalid value 'enableval' for --enable-tbb-rpath, must be 'yes' or 'no'"])
[AC_MSG_ERROR(["invalid value '$enableval' for --enable-tbb-rpath, must be 'yes' or 'no'"])
])
],
[
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment