1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

Avoid libmain header in libexpr

We just don't need it!
This commit is contained in:
John Ericson 2024-06-26 22:26:45 -04:00
parent 7e66f0d91c
commit f002f85861
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
#include "hash.hh" #include "hash.hh"
#include "primops.hh" #include "primops.hh"
#include "print-options.hh" #include "print-options.hh"
#include "shared.hh" #include "exit.hh"
#include "types.hh" #include "types.hh"
#include "util.hh" #include "util.hh"
#include "store-api.hh" #include "store-api.hh"

View file

@ -15,7 +15,7 @@ libexpr_SOURCES := \
INCLUDE_libexpr := -I $(d) INCLUDE_libexpr := -I $(d)
libexpr_CXXFLAGS += \ libexpr_CXXFLAGS += \
$(INCLUDE_libutil) $(INCLUDE_libstore) $(INCLUDE_libfetchers) $(INCLUDE_libmain) $(INCLUDE_libexpr) \ $(INCLUDE_libutil) $(INCLUDE_libstore) $(INCLUDE_libfetchers) $(INCLUDE_libexpr) \
-DGC_THREADS -DGC_THREADS
libexpr_LIBS = libutil libstore libfetchers libexpr_LIBS = libutil libstore libfetchers