10 lines
147 B
Plaintext
10 lines
147 B
Plaintext
|
|
#!/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"
|