#!/bin/sh

if [ -z "$1" ] ; then
    echo "error: No PO file specified." >&2
    exit 2
fi
po_file="$1" ; shift

make update-po POFILES="$po_file"
