summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
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 6704036..b842ba0 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -12,33 +12,33 @@ DIE=0
test -f top.c || {
echo
- echo "You must run this script in the top-level procps directory"
+ echo "You must run this script in the top-level procps-ng directory"
echo
DIE=1
}
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
echo
- echo "You must have autoconf installed to generate procps build system."
+ echo "You must have autoconf installed to generate procps-ng build system."
echo
DIE=1
}
(autoheader --version) < /dev/null > /dev/null 2>&1 || {
echo
- echo "You must have autoheader installed to generate procps build system."
+ echo "You must have autoheader installed to generate procps-ng build system."
echo "The autoheader command is part of the GNU autoconf package."
echo
DIE=1
}
(libtool --version) < /dev/null > /dev/null 2>&1 || {
echo
- echo "You must have libtool-2 installed to generate procps build system."
+ echo "You must have libtool-2 installed to generate procps-ng build system."
echo
DIE=1
}
(automake --version) < /dev/null > /dev/null 2>&1 || {
echo
- echo "You must have automake installed to generate procps build system."
+ echo "You must have automake installed to generate procps-ng build system."
echo
DIE=1
}