diff options
author | Peter Williams <peterw@ximian.com> | 2001-06-02 21:44:31 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2001-06-02 21:44:31 +0800 |
commit | b5d82cbe958178a4f8be2d206f8e4f50dba4ea87 (patch) | |
tree | 5d1d724c5f929b259589dc3e3673481b2c53022d /macros/autogen.sh | |
parent | 637fb0f2779b0759b995f28ba5fbd225f562a723 (diff) | |
download | gsoc2013-evolution-b5d82cbe958178a4f8be2d206f8e4f50dba4ea87.tar gsoc2013-evolution-b5d82cbe958178a4f8be2d206f8e4f50dba4ea87.tar.gz gsoc2013-evolution-b5d82cbe958178a4f8be2d206f8e4f50dba4ea87.tar.bz2 gsoc2013-evolution-b5d82cbe958178a4f8be2d206f8e4f50dba4ea87.tar.lz gsoc2013-evolution-b5d82cbe958178a4f8be2d206f8e4f50dba4ea87.tar.xz gsoc2013-evolution-b5d82cbe958178a4f8be2d206f8e4f50dba4ea87.tar.zst gsoc2013-evolution-b5d82cbe958178a4f8be2d206f8e4f50dba4ea87.zip |
macros/ChangeLog:
2001-06-01 Peter Williams <peterw@ximian.com>
* autogen.sh: s,Gnome,$PKG_NAME,g
macros2/ChangeLog:
2001-06-01 Peter Williams <peterw@ximian.com>
* autogen.sh: s,Gnome,$PKG_NAME,g
svn path=/trunk/; revision=10097
Diffstat (limited to 'macros/autogen.sh')
-rw-r--r-- | macros/autogen.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/macros/autogen.sh b/macros/autogen.sh index 43d7d3f63d..486e1f8ab7 100644 --- a/macros/autogen.sh +++ b/macros/autogen.sh @@ -11,7 +11,7 @@ fi (autoconf --version) < /dev/null > /dev/null 2>&1 || { echo - echo "**Error**: You must have \`autoconf' installed to compile Gnome." + echo "**Error**: You must have \`autoconf' installed to compile $PKG_NAME." echo "Download the appropriate package for your distribution," echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" DIE=1 @@ -20,7 +20,7 @@ fi (grep "^AM_PROG_XML_I18N_TOOLS" $srcdir/configure.in >/dev/null) && { (xml-i18n-toolize --version) < /dev/null > /dev/null 2>&1 || { echo - echo "**Error**: You must have \`xml-i18n-toolize' installed to compile Gnome." + echo "**Error**: You must have \`xml-i18n-toolize' installed to compile $PKG_NAME." echo "Get ftp://ftp.gnome.org/pub/GNOME/stable/sources/xml-i18n-tools/xml-i18n-tools-0.6.tar.gz" echo "(or a newer version if it is available)" DIE=1 @@ -30,7 +30,7 @@ fi (grep "^AM_PROG_LIBTOOL" $srcdir/configure.in >/dev/null) && { (libtool --version) < /dev/null > /dev/null 2>&1 || { echo - echo "**Error**: You must have \`libtool' installed to compile Gnome." + echo "**Error**: You must have \`libtool' installed to compile $PKG_NAME." echo "Get ftp://ftp.gnu.org/pub/gnu/libtool-1.2d.tar.gz" echo "(or a newer version if it is available)" DIE=1 @@ -41,7 +41,7 @@ fi # grep "sed.*POTFILES" $srcdir/configure.in >/dev/null || \ # (gettext --version) < /dev/null > /dev/null 2>&1 || { # echo -# echo "**Error**: You must have \`gettext' installed to compile Gnome." +# echo "**Error**: You must have \`gettext' installed to compile $PKG_NAME." # echo "Get ftp://alpha.gnu.org/gnu/gettext-0.10.35.tar.gz" # echo "(or a newer version if it is available)" # DIE=1 @@ -52,7 +52,7 @@ fi # grep "sed.*POTFILES" $srcdir/configure.in >/dev/null || \ # (gettext --version) < /dev/null > /dev/null 2>&1 || { # echo -# echo "**Error**: You must have \`gettext' installed to compile Gnome." +# echo "**Error**: You must have \`gettext' installed to compile $PKG_NAME." # echo "Get ftp://alpha.gnu.org/gnu/gettext-0.10.35.tar.gz" # echo "(or a newer version if it is available)" # DIE=1 @@ -61,7 +61,7 @@ fi (automake --version) < /dev/null > /dev/null 2>&1 || { echo - echo "**Error**: You must have \`automake' installed to compile Gnome." + echo "**Error**: You must have \`automake' installed to compile $PKG_NAME." echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz" echo "(or a newer version if it is available)" DIE=1 |