Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
base: e43834650fb0
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 1a1696f9b630
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 22, 2019

  1. SDL2: don't mix space-separated / lists in cmake config

    The SDL2_PATH environment variable is space-separated. However, CMake
    lists are semicolon separated, and doing set(list "a" ${var}) will end
    up with list containing "a;b c d". This causes downstream users to fail
    parsing the include dirs list.
    
    Normalize the include dirs list to a normal CMake semicolon-separated
    list using separate_arguments.
    delroth authored and abbradar committed Aug 22, 2019
    Copy the full SHA
    1a1696f View commit details
    Browse the repository at this point in the history