#!/bin/sh

# remove locally built liborcus so that we actually test the system one
find . -name "*0.13.so*" -exec rm {} \;
if [ -d ./src/python/.libs ]; then
        rm -rf ./src/python/.libs
fi

make check
