29 lines
735 B
Bash
29 lines
735 B
Bash
#! /bin/sh
|
|
# One argument is required which is the path to the toplevel directory
|
|
# of the distribution.
|
|
|
|
trap 'rm -fr $tmpfiles' 1 2 3 15
|
|
|
|
tmpfiles="zero-domain.po"
|
|
rm -f zero-domain.po
|
|
: ${XGETTEXT=xgettext}
|
|
${XGETTEXT} -k_ -d zero-domain -x $top_srcdir/po/gettext.pot \
|
|
$top_srcdir/src/xgettext.c
|
|
|
|
test ! -f zero-domain.po
|
|
result=$?
|
|
|
|
rm -fr $tmpfiles
|
|
|
|
exit $result
|
|
|
|
# Preserve executable bits for this shell script.
|
|
# Thanks to Noah Friedman for this great trick.
|
|
Local Variables:
|
|
eval:(defun frobme () (set-file-modes buffer-file-name file-mode))
|
|
eval:(make-local-variable 'file-mode)
|
|
eval:(setq file-mode (file-modes (buffer-file-name)))
|
|
eval:(make-local-variable 'after-save-hook)
|
|
eval:(add-hook 'after-save-hook 'frobme)
|
|
End:
|