* eina: make -C doesn't exist on OpenBSD.

Patch from the OpenBSD team :
              Fabien Romano <fabien@openbsd.org>
              Jonathan Armani <armani@opensbd.org>



SVN revision: 54761
This commit is contained in:
Cedric BAIL 2010-11-21 11:03:53 +00:00
parent 8d85e48480
commit 5812f44f08
2 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ m4/eina_check.m4
doc:
@echo "entering doc/"
make -C doc doc
@cd doc && make doc
# Unit tests
@ -107,7 +107,7 @@ endif
if EFL_ENABLE_BENCHMARK
benchmark:
@make -C src benchmark
@cd src && make benchmark
@mkdir result || true
@cd result && ../src/tests/eina_bench `date +%F_%s`

View File

@ -7,7 +7,7 @@ MAINTAINERCLEANFILES = Makefile.in
if EFL_ENABLE_BENCHMARK
benchmark: all
make -C tests eina_bench
cd tests && make eina_bench
else