diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-11-23T23·53+0000 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-11-23T23·53+0000 |
commit | 2bd0fcc9663211cc480f61dc9e05f43ac9ecca69 (patch) | |
tree | b5eb31148f520349e8c1ec6635b3714c18116e9b /src/libstore/Makefile.new | |
parent | f267ff16b4527ca6c083014b93b4568d89221f49 (diff) |
Use libnix as a prefix for all Nix libraries
In particular "libutil" was always a problem because it collides with Glibc's libutil. Even if we install into $(libdir)/nix, the linker sometimes got confused (e.g. if a program links against libstore but not libutil, then ld would report undefined symbols in libstore because it was looking at Glibc's libutil).
Diffstat (limited to 'src/libstore/Makefile.new')
-rw-r--r-- | src/libstore/Makefile.new | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/Makefile.new b/src/libstore/Makefile.new index 7d542d3123ee..eaba1005f227 100644 --- a/src/libstore/Makefile.new +++ b/src/libstore/Makefile.new @@ -1,5 +1,7 @@ LIBS += libstore +libstore_NAME = libnixstore + libstore_DIR := $(d) libstore_SOURCES = \ |