diff options
author | Alex Merry <alex.merry@kde.org> | 2014-12-07 18:44:54 +0000 |
---|---|---|
committer | Alex Merry <alex.merry@kde.org> | 2014-12-07 18:44:54 +0000 |
commit | b5f3c66c8182e2ca2d0670d3e0962bc215fea220 (patch) | |
tree | 5ed7a37bda6c1ac8aa72a2d42b3e672940dc3faa /tests | |
parent | 81627ad86d3d7d5e5a7d130dfc746d5b1b58cbe7 (diff) | |
download | extra-cmake-modules-b5f3c66c8182e2ca2d0670d3e0962bc215fea220.tar.gz extra-cmake-modules-b5f3c66c8182e2ca2d0670d3e0962bc215fea220.tar.bz2 |
Fix ECMSetupVersionTest/new_explicit_header_abspath
The #include in the main.c file did not match the generated header file
name, so it was actually incorrectly including the header from another
test.
BUG: 341576
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ECMSetupVersionTest/new_explicit_header_abspath/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ECMSetupVersionTest/new_explicit_header_abspath/main.c b/tests/ECMSetupVersionTest/new_explicit_header_abspath/main.c index d7168a79..7c3c781e 100644 --- a/tests/ECMSetupVersionTest/new_explicit_header_abspath/main.c +++ b/tests/ECMSetupVersionTest/new_explicit_header_abspath/main.c @@ -1,4 +1,4 @@ -#include <ecm_old_header_abspath_version.h> +#include <ecm_new_explicit_header_abspath_version.h> #include <string.h> #include <stdio.h> |