We are currently migrating Bugzilla to GitHub issues.
Any changes made to the bug tracker now will be lost, so please do not post new bugs or make changes to them.
When we're done, all bug URLs will redirect to their equivalent location on the new bug tracker.

Bug 3959

Summary: cmake build broken by commit 11702 (cf166abbde4a) due to typo
Product: SDL Reporter: Máté Nagy <nmakaltar>
Component: *don't know*Assignee: Ryan C. Gordon <icculus>
Status: RESOLVED FIXED QA Contact: Sam Lantinga <slouken>
Severity: major    
Priority: P2 CC: nmakaltar
Version: HG 2.1   
Hardware: All   
OS: All   

Description Máté Nagy 2017-11-13 23:56:13 UTC
There is a typo in CMakeLists.txt that makes CMake exit with failure.

Change that causes the problem: (Notice the double ending brackets)
   ${SDL2_SOURCE_DIR}/src/video/*.c)
+  ${SDL2_SOURCE_DIR}/src/video/yuv2rgb/*.c)

Fix:
Just remove the first ending bracket resulting in:
   ${SDL2_SOURCE_DIR}/src/video/*.c
   ${SDL2_SOURCE_DIR}/src/video/yuv2rgb/*.c)
Comment 1 Sam Lantinga 2017-11-20 08:03:44 UTC
Fixed, thanks!
https://hg.libsdl.org/SDL/rev/7960a740a126