Fix bug in sxsincelast-dialog, i18n xaccFreqSpecGetFreqStr.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5173 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Robert Graham Merkel
2001-08-18 06:32:13 +00:00
parent bac11f87b6
commit 51e8e75915
4 changed files with 123 additions and 56 deletions

View File

@@ -9,7 +9,7 @@ if [ -n "$GNOME2_PATH" ]; then
export PATH
fi
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
(autoconf2.50 --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "**Error**: You must have \`autoconf' installed to compile Gnome."
echo "Download the appropriate package for your distribution,"
@@ -157,13 +157,13 @@ do
if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then
echo "Running autoheader..."
autoheader || { echo "**Error**: autoheader failed."; exit 1; }
autoheader2.50 || { echo "**Error**: autoheader failed."; exit 1; }
fi
echo "Running automake --gnu $am_opt ..."
automake --add-missing --gnu $am_opt ||
{ echo "**Error**: automake failed."; exit 1; }
echo "Running autoconf ..."
autoconf || { echo "**Error**: autoconf failed."; exit 1; }
autoconf2.50 || { echo "**Error**: autoconf failed."; exit 1; }
) || exit 1
fi
done