diff options
author | Peter Simons <simons@cryp.to> | 2018-04-22T05·57+0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-22T05·57+0200 |
commit | 655058b8a1e9466fe46bdc2b7466f4c1f60f3188 (patch) | |
tree | 67da83bb97db1741da4afcbe9cb1322a7d3fdebf /src/nix-channel/local.mk | |
parent | 040acdcee2fcf5647896ba12316b4f9184275a70 (diff) | |
parent | 3a918014b248a41fe6307228d258b6113e84138b (diff) |
Merge pull request #2101 from andrew-d/adunham/fix-library-ordering
Fix library ordering in Makefiles
Diffstat (limited to 'src/nix-channel/local.mk')
-rw-r--r-- | src/nix-channel/local.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-channel/local.mk b/src/nix-channel/local.mk index 49fc105c6f79..c14e8c359ca0 100644 --- a/src/nix-channel/local.mk +++ b/src/nix-channel/local.mk @@ -2,6 +2,6 @@ programs += nix-channel nix-channel_DIR := $(d) -nix-channel_LIBS = libmain libutil libformat libstore +nix-channel_LIBS = libmain libformat libstore libutil nix-channel_SOURCES := $(d)/nix-channel.cc |