name change: procps -> procps-ng

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola
2011-06-04 19:40:29 +02:00
parent 17affc6637
commit 71d10d3a49
24 changed files with 47 additions and 117 deletions

View File

@@ -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
}