diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-02-16T16·37+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-02-16T16·37+0000 |
commit | 0dfdafdf6de4f741ff60637843f0e7900384cd9f (patch) | |
tree | d0dfc7555e007bb9d4066cd45b4eb36405c20731 /src/nix-store | |
parent | f34de121401bb43c6cfab892b2b254e42652ba90 (diff) |
* Allow linking against an external Berkeley DB / ATerm library.
Diffstat (limited to 'src/nix-store')
-rw-r--r-- | src/nix-store/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix-store/Makefile.am b/src/nix-store/Makefile.am index 76d3a6c6bedc..588d645eb67b 100644 --- a/src/nix-store/Makefile.am +++ b/src/nix-store/Makefile.am @@ -2,7 +2,7 @@ bin_PROGRAMS = nix-store nix_store_SOURCES = main.cc dotgraph.cc dotgraph.hh help.txt nix_store_LDADD = ../libmain/libmain.a ../libstore/libstore.a ../libutil/libutil.a \ - ../boost/format/libformat.a -L../../externals/inst/lib -ldb_cxx -lATerm + ../boost/format/libformat.a ${bdb_lib} ${aterm_lib} main.o: help.txt.hh @@ -10,7 +10,7 @@ main.o: help.txt.hh ../bin2c/bin2c helpText < $< > $@ || (rm $@ && exit 1) AM_CXXFLAGS = \ - -I.. -I../../externals/inst/include -I../libutil -I../libstore -I../libmain + -I.. ${bdb_include} $(aterm_include) -I../libutil -I../libstore -I../libmain init-state-local: $(INSTALL) -d $(DESTDIR)$(localstatedir)/nix |