Commit e8fb7ad3 authored by Sam Hocevar's avatar Sam Hocevar

* ./bootstrap: we don't fail if gettext is too old and there is no

    ABOUT-NLS in the tree.
parent 8e57ca40
#! /bin/sh #! /bin/sh
## bootstrap file for the VLC media player ## bootstrap file for the VLC media player
## $Id: bootstrap,v 1.42 2003/02/02 04:01:29 sam Exp $ ## $Id: bootstrap,v 1.43 2003/02/03 21:47:08 sam Exp $
## ##
## Authors: Samuel Hocevar <sam@zoy.org> ## Authors: Samuel Hocevar <sam@zoy.org>
...@@ -185,12 +185,14 @@ then ...@@ -185,12 +185,14 @@ then
GETTEXT=yes GETTEXT=yes
else else
# User's gettext is too old. try to continue anyway. # User's gettext is too old. try to continue anyway.
echo > ABOUT-NLS
mkdir -p intl mkdir -p intl
echo > intl/Makefile.am echo > intl/Makefile.am
echo 'AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])' > m4/oldgettext.m4 echo 'AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])' > m4/oldgettext.m4
GETTEXT=old GETTEXT=old
fi;else fi;else
# we don't have gettext. grmbl. try to continue anyway. # we don't have gettext. grmbl. try to continue anyway.
echo > ABOUT-NLS
mkdir -p intl mkdir -p intl
echo > intl/Makefile.am echo > intl/Makefile.am
echo 'AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])' > m4/oldgettext.m4 echo 'AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])' > m4/oldgettext.m4
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment