summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorMark Doliner <markdoliner@pidgin.im>2006-09-04 05:48:45 +0000
committerMark Doliner <markdoliner@pidgin.im>2006-09-04 05:48:45 +0000
commitb3cc9813a2b2e9cfe4536bc12a5c9f8aff08d208 (patch)
treebf353896345c4b947eb6a01d1803120b2a992410 /autogen.sh
parent3e1f13fa97752de0c8c97e5aa64b7a5bad12f09e (diff)
downloadpidgin-b3cc9813a2b2e9cfe4536bc12a5c9f8aff08d208.tar.gz
[gaim-migrate @ 17155]
Minor cleanup and whitespace. And make some error messages a bit more concise.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/autogen.sh b/autogen.sh
index bac3e5e4c7..459d7c0437 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -2,35 +2,35 @@
(glib-gettextize --version) < /dev/null > /dev/null 2>&1 || {
echo;
- echo "You must have glib-gettextize installed to compile Gaim";
+ echo "You must have glib-gettextize installed to compile Gaim.";
echo;
exit;
}
(intltoolize --version) < /dev/null > /dev/null 2>&1 || {
echo;
- echo "You must have intltool installed to compile Gaim";
+ echo "You must have intltool installed to compile Gaim.";
echo;
exit;
}
(libtoolize --version) < /dev/null > /dev/null 2>&1 || {
echo;
- echo "You must have libtool installed to compile Gaim";
+ echo "You must have libtool installed to compile Gaim.";
echo;
exit;
}
(automake --version) < /dev/null > /dev/null 2>&1 || {
echo;
- echo "You must have automake installed to compile Gaim";
+ echo "You must have automake installed to compile Gaim.";
echo;
exit;
}
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
echo;
- echo "You must have autoconf installed to compile Gaim";
+ echo "You must have autoconf installed to compile Gaim.";
echo;
exit;
}