#!/bin/sh

# load common functions, compatible with local and installed script
. "$(dirname "$0")"/../share/eterbuild/functions/common

# workaround for last passed through options
case "$1" in
    -*)
        FIRST=
        ;;
    *)
        FIRST="$1"
        shift
        ;;
esac

docmd "$(dirname "$0")"/rpmbph $FIRST -n "$@"
