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: 405d762a1a05
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: eb17c2fe9be6
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 28, 2020

  1. hdf4: fix invalid rpath on darwin

    CMake changes in hdf4 v4.15.2 broke the library path on macOS,
    linking using an invalid rpath rather than an absolute path.
    
    Before this commit:
    ```
    otool -L result/lib/libhdf.dylib
    result/lib/libhdf.dylib:
    	@rpath/libhdf.4.dylib (compatibility version 4.0.0, current version 4.15.2)
    ```
    
    After:
    ```
    otool -L result/lib/libhdf.dylib
    result/lib/libhdf.dylib:
    	/nix/store/bz52b2gwci0k8rwd0llsi555s1hx166j-hdf-4.2.15/lib/libhdf.4.15.2.dylib (compatibility version 4.0.0, current version 4.15.2)
    ```
    rtburns-jpl committed Dec 28, 2020
    Copy the full SHA
    81f07a6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #107851 from rtburns-jpl/hdf4

    hdf4: fix invalid rpath on darwin
    prusnak committed Dec 28, 2020
    Copy the full SHA
    eb17c2f View commit details
    Browse the repository at this point in the history