forked from lix-project/lix
3a918014b2
The existing ordering linked `libutil` before `libstore`, which causes link failures when building statically. This is due to `libstore` using functions from `libutil`, and the fact that symbol resolution works "forward" - i.e. if you pass `-lfoo -lbar -lbaz`, any symbols that `libbar` uses from `libbaz` will be resolved, but symbols from `libfoo` will not since it comes first in the command line. All this to say: this commit reorders the libraries which fixes the link errors.
10 lines
200 B
Makefile
10 lines
200 B
Makefile
programs += build-remote
|
|
|
|
build-remote_DIR := $(d)
|
|
|
|
build-remote_INSTALL_DIR := $(libexecdir)/nix
|
|
|
|
build-remote_LIBS = libmain libformat libstore libutil
|
|
|
|
build-remote_SOURCES := $(d)/build-remote.cc
|