diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-11-06T01·15+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-11-06T01·15+0000 |
commit | 327a232c85de3faa56f9a6117c86e1aa22f88bd6 (patch) | |
tree | a664640621fd3d6806683e08beebc142b634b4fc /src/nix-env | |
parent | c60d796f04f81b17330fbfc1e438ed207b1047f4 (diff) |
* Remove support for old (before Nix 0.12pre12020) databases.
Diffstat (limited to 'src/nix-env')
-rw-r--r-- | src/nix-env/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix-env/Makefile.am b/src/nix-env/Makefile.am index dfc10cd5d039..900524f76ed1 100644 --- a/src/nix-env/Makefile.am +++ b/src/nix-env/Makefile.am @@ -3,7 +3,7 @@ bin_PROGRAMS = nix-env nix_env_SOURCES = nix-env.cc profiles.cc profiles.hh help.txt nix_env_LDADD = ../libmain/libmain.la ../libexpr/libexpr.la \ ../libstore/libstore.la ../libutil/libutil.la \ - ../boost/format/libformat.la ${bdb_lib} ${aterm_lib} @ADDITIONAL_NETWORK_LIBS@ + ../boost/format/libformat.la ${aterm_lib} @ADDITIONAL_NETWORK_LIBS@ nix-env.o: help.txt.hh @@ -11,6 +11,6 @@ nix-env.o: help.txt.hh ../bin2c/bin2c helpText < $< > $@ || (rm $@ && exit 1) AM_CXXFLAGS = \ - -I$(srcdir)/.. ${bdb_include} ${aterm_include} \ + -I$(srcdir)/.. ${aterm_include} \ -I$(srcdir)/../libutil -I$(srcdir)/../libstore \ -I$(srcdir)/../libexpr -I$(srcdir)/../libmain -I../libexpr |