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/nix
base: 19265ed26c5b
Choose a base ref
...
head repository: NixOS/nix
compare: d277442df53a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 17, 2018

  1. Fix parser/lexer generation with parallel make

    Fun fact: rules with multiple targets don't work properly with 'make
    -j'. For example, a rule like
    
      a b: c
        touch a b
    
    is equivalent to
    
      a: c
        touch a b
    
      b: c
        touch a b
    
    so with 'make -j', the 'touch' command will be run twice. See
    e.g. https://stackoverflow.com/questions/2973445/gnu-makefile-rule-generating-a-few-targets-from-a-single-source-file.
    edolstra committed Aug 17, 2018
    Configuration menu
    Copy the full SHA
    d277442 View commit details
    Browse the repository at this point in the history