#!/bin/sh

if test "$#" -gt 0; then
    echo "Usage: configure" 1>&2
    exit 1
fi

cd config &&
exec ./configure "$@"
