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-env/Makefile.am | |
parent | f34de121401bb43c6cfab892b2b254e42652ba90 (diff) |
* Allow linking against an external Berkeley DB / ATerm library.
Diffstat (limited to 'src/nix-env/Makefile.am')
-rw-r--r-- | src/nix-env/Makefile.am | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nix-env/Makefile.am b/src/nix-env/Makefile.am index e4b03943c5bd..3943a9d9aca9 100644 --- a/src/nix-env/Makefile.am +++ b/src/nix-env/Makefile.am @@ -4,8 +4,7 @@ nix_env_SOURCES = main.cc names.cc names.hh \ profiles.cc profiles.hh help.txt nix_env_LDADD = ../libmain/libmain.a ../libexpr/libexpr.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 @@ -13,7 +12,7 @@ main.o: help.txt.hh ../bin2c/bin2c helpText < $< > $@ || (rm $@ && exit 1) AM_CXXFLAGS = \ - -I.. -I../../externals/inst/include -I../libutil -I../libstore \ + -I.. ${bdb_include} ${aterm_include} -I../libutil -I../libstore \ -I../libexpr -I../libmain install-data-local: |