Skip to content

Commit 204360f

Browse files
Leandro VazThomas Preud'homme
Leandro Vaz
authored and
Thomas Preud'homme
committed
[flang] Fix typo in FlangConfig.cmake.in.
`find_package(Flang)` does not work as there is a missing `@` in the FlangConfig.cmake.in file. This patch fixes the issue. Reviewed By: thopre Differential Revision: https://reviews.llvm.org/D96484
1 parent af83e89 commit 204360f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flang/cmake/modules/FlangConfig.cmake.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ find_package(LLVM REQUIRED CONFIG
66
HINTS "@FLANG_CONFIG_LLVM_CMAKE_DIR@")
77

88
set(FLANG_EXPORTED_TARGETS "@FLANG_EXPORTS@")
9-
set(FLANG_CMAKE_DIR "FLANG_CONFIG_CMAKE_DIR@")
9+
set(FLANG_CMAKE_DIR "@FLANG_CONFIG_CMAKE_DIR@")
1010
set(FLANG_INCLUDE_DIRS "@FLANG_CONFIG_INCLUDE_DIRS@")
1111

1212
# Provide all our library targets to users.

0 commit comments

Comments
 (0)