summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorSami Kerola <kerolasa@iki.fi>2011-06-04 19:40:29 +0200
committerSami Kerola <kerolasa@iki.fi>2011-06-04 20:50:12 +0200
commit71d10d3a49474320a1d894e6b19a1c93bd68398d (patch)
treea4aa60b9fc171ae9e037e2b4d56d7a1c4f1c29fb /autogen.sh
parent17affc663783ead53551562bd9823495c12b5984 (diff)
downloadprocps-ng-71d10d3a49474320a1d894e6b19a1c93bd68398d.tar.gz
name change: procps -> procps-ng
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
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
}