Skip to content

Commit

Permalink
build: Change hyperinit strings in autogen.sh to say hyperstart
Browse files Browse the repository at this point in the history
I'm guessing that's a previous name for the project.

Signed-off-by: Damien Lespiau <[email protected]>
  • Loading branch information
Damien Lespiau committed Sep 12, 2016
1 parent 4c0887f commit 6e8bc85
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,34 +8,34 @@ DIE=0

test -f src/init.c || {
echo
echo "You must run this script in the top-level hyperint drectory."
echo "You must run this script in the top-level hyperstart drectory."
echo
DIE=1
}

(autoconf --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autoconf installed to generate the hyperinit."
echo "You must have autoconf installed to generate the hyperstart."
echo
DIE=1
}

(autoheader --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autoheader installed to generate the hypernit."
echo "You must have autoheader installed to generate the hyperstart."
echo
DIE=1
}

(automake --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have automake installed to generate the hypernit."
echo "You must have automake installed to generate the hyperstart."
echo
DIE=1
}
(autoreconf --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autoreconf installed to generate the hypernit."
echo "You must have autoreconf installed to generate the hyperstart."
echo
DIE=1
}
Expand Down

0 comments on commit 6e8bc85

Please sign in to comment.