mirror of https://github.com/MidnightCommander/mc
buildsys: fix bootstrapped build on Solaris and systems with LC_ALL != C
Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
This commit is contained in:
parent
54a4c7d55f
commit
2c76c23a8f
|
@ -14,8 +14,9 @@ ${AUTORECONF:-autoreconf} --verbose --install --force -I m4 ${AUTORECONF_FLAGS}
|
|||
rm -f INSTALL && ln -s doc/INSTALL .
|
||||
|
||||
# Generate po/POTFILES.in
|
||||
if ! xgettext -h 2>&1 | grep -e '--keyword=' >/dev/null ; then
|
||||
if ! xgettext -h 2>&1 | grep -e '--keyword' >/dev/null ; then
|
||||
echo "gettext is unable to extract translations, set XGETTEXT to GNU gettext!" >&2
|
||||
touch po/POTFILES.in
|
||||
else
|
||||
${XGETTEXT:-xgettext} --keyword=_ --keyword=N_ --keyword=Q_ --output=- \
|
||||
`find . -name '*.[ch]'` | ${SED-sed} -ne '/^#:/{s/#://;s/:[0-9]*/\
|
||||
|
|
Loading…
Reference in New Issue