diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-05-12T11·47+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-05-12T11·47+0000 |
commit | b5988004d64d6c533e8bb09732a6f7cd4fb1194f (patch) | |
tree | b8768d77c2a3a3557436e22997c3128ed069fda7 /src/nix-store | |
parent | 9d72bf8835f3012169aaa88ec608172d5a056b9e (diff) |
* Support for srcdir != builddir (NIX-41).
Diffstat (limited to 'src/nix-store')
-rw-r--r-- | src/nix-store/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nix-store/Makefile.am b/src/nix-store/Makefile.am index 5cfa52e5e010..83fa24fca159 100644 --- a/src/nix-store/Makefile.am +++ b/src/nix-store/Makefile.am @@ -10,4 +10,5 @@ main.o: help.txt.hh ../bin2c/bin2c helpText < $< > $@ || (rm $@ && exit 1) AM_CXXFLAGS = \ - -I.. ${bdb_include} $(aterm_include) -I../libutil -I../libstore -I../libmain + -I$(srcdir)/.. ${bdb_include} $(aterm_include) -I$(srcdir)/../libutil \ + -I$(srcdir)/../libstore -I$(srcdir)/../libmain |