view build.sh @ 32:d76d0651512f

Set -e, set PERL5LIB during build temporarily disable running the tests
author Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
date Thu, 17 Dec 2020 13:53:01 +0100 (2020-12-17)
parents a8bdee6b0128
children
line wrap: on
line source
#!/bin/bash

set -e -x

export PERL5LIB=$PWD/MonetDB-CLI-MapiPP:$PWD/MonetDB-CLI:$PWD

for i in DBD MonetDB-CLI/MonetDB MonetDB-CLI-MapiPP/MonetDB/CLI
do
	(
		cd $i
		perl Makefile.PL
		make
	)
done