From 6e8bc858785b628a79c28195c3e9c9ce9e315f97 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Mon, 12 Sep 2016 13:29:41 +0100 Subject: [PATCH] build: Change hyperinit strings in autogen.sh to say hyperstart I'm guessing that's a previous name for the project. Signed-off-by: Damien Lespiau --- autogen.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/autogen.sh b/autogen.sh index baa6df2..3d93d33 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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 }