Skip to content

Commit

Permalink
cmake: fix the SelectOneLibrary macro, it added one } too many
Browse files Browse the repository at this point in the history
Signed-off-by: Ruben Smits <[email protected]>
  • Loading branch information
Ruben Smits committed Oct 9, 2013
1 parent df5c8b1 commit 19e5075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/SelectOneLibrary.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ macro( SELECT_ONE_LIBRARY NAME RETURN)
LIST(LENGTH ${NAME} COUNT)
if (1 EQUAL COUNT)

set(${RETURN} ${${NAME}}})
set(${RETURN} ${${NAME}})

else (1 EQUAL COUNT)

Expand Down

0 comments on commit 19e5075

Please sign in to comment.