Roumen Petrov wrote:
Aleksey Sanin wrote:
Thanks for the bug report! I don;t think that there is a need for $BUILDDIR
because there is a $top_buildir variable available already. Thus I've changed
Makefile.am to look like this:
$top_buildir is not solution, because is relative path: =================================================== $ pwd /usr/local/src/.work/.builds/xmlsec1-current $ grep 'srcdir =' Makefile srcdir = /usr/local/src/.work/.sources/xmlsec1-current top_srcdir = /usr/local/src/.work/.sources/xmlsec1-current $ grep 'top_builddir =' Makefile top_builddir = . $ grep 'top_builddir =' src/Makefile top_builddir = .. =================================================== with BUILDDIR=`pwd`, we get absolute path.
check-km: $(TEST_APP)
@(cd $(top_srcdir);\
$(SHELL) ./tests/testKeys.sh ./tests $(top_builddir)/$(TEST_APP) der)
check-dsig: $(TEST_APP)
@(cd $(top_srcdir);\
$(SHELL) ./tests/testDSig.sh ./tests $(top_builddir)/$(TEST_APP) der pkcs8)
check-enc: $(TEST_APP)
@(cd $(top_srcdir);\
$(SHELL) ./tests/testEnc.sh ./tests $(top_builddir)/$(TEST_APP) der pkcs8)
This seems to be working for me. Let me know if you still have any problems.
Thanks again, Aleksey
_______________________________________________ xmlsec mailing list [EMAIL PROTECTED] http://www.aleksey.com/mailman/listinfo/xmlsec
_______________________________________________ xmlsec mailing list [EMAIL PROTECTED] http://www.aleksey.com/mailman/listinfo/xmlsec
