diff options
author | Linus Nordberg <linus@nordberg.se> | 2015-04-01 13:12:52 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2015-04-01 13:14:07 +0200 |
commit | 4860fff216892010a997547b0fa19cd4505cb804 (patch) | |
tree | df88d5ae7d5ac8e109eaaa276cae0ce09b16f7d4 /Makefile | |
parent | b280c136a4279d9b3c46936f4737c47d83dae2fd (diff) |
Do cd into $INSTDIR after all.
map is right.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -29,12 +29,12 @@ tests-prepare: mkdir $(INSTDIR)/tests/known_roots cp tools/testcerts/roots/* $(INSTDIR)/tests/known_roots @for machine in $(MACHINES); do \ - tools/compileconfig.py --config=test/catlfish-test.cfg --localconfig test/catlfish-test-local-$$machine.cfg ; \ + (cd $(INSTDIR); ../tools/compileconfig.py --config ../test/catlfish-test.cfg --localconfig ../test/catlfish-test-local-$$machine.cfg) ; \ mkdir -p $(INSTDIR)/tests/machine/machine-$$machine/db ; \ touch $(INSTDIR)/tests/machine/machine-$$machine/db/index ; \ touch $(INSTDIR)/tests/machine/machine-$$machine/db/newentries ; \ done - tools/compileconfig.py --config test/catlfish-test.cfg --localconfig test/catlfish-test-local-signing.cfg + (cd $(INSTDIR); ../tools/compileconfig.py --config ../test/catlfish-test.cfg --localconfig ../test/catlfish-test-local-signing.cfg) mkdir $(INSTDIR)/tests/privatekeys mkdir $(INSTDIR)/tests/publickeys @for node in $(NODES); do \ |