#!/bin/sh set -e autoreconf --force --install --symlink --warnings=all # The client certificate tests are skipped by default, but require an # alternative trust store for the test web server's public key. To enable # the trust store for the client certificate tests, the SCRIPT_PATH variable # must be uncommented and the following configuration argument must be added # to args: # # --with-fallback-capaths=$SCRIPT_PATH/swupd_test_certificates # #SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" args="\ --sysconfdir=/etc \ --localstatedir=/var \ --prefix=/usr \ --enable-silent-rules" ./configure "$args" "$@" make clean