29 lines
786 B
Bash
29 lines
786 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="xg-test1.po"
|
|
: ${XGETTEXT=xgettext}
|
|
${XGETTEXT} -d xg-test1 -k_ --omit-header \
|
|
$top_srcdir/src/xgettext.c $top_srcdir/src/msgfmt.c $top_srcdir/src/gettextp.c
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} $top_srcdir/tests/xg-test1.ok.po xg-test1.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:
|