If autogen.sh completes successfully, it outputs "run ./configure ; make". I do not think this is good advice because what if configure has an error? The "make" command will still run.
I suggest: <<You can now run "./configure">> [autogen.patch] because upon successful exit, configure tells you to run make and make install. An alternative that suggests both ./configure and make but does not run make on a failed configure is: <<run "./configure && make">> [autogen_alt.patch] Scott
diff --git a/autogen.sh b/autogen.sh index 8b48960..698f90c 100755 --- a/autogen.sh +++ b/autogen.sh @@ -88,5 +88,5 @@ echo "Building po/POTFILES.in..." make -s -f po/Rules-lyx srcdir=po top_srcdir=. po/POTFILES.in echo -echo 'run "./configure ; make"' +echo 'You can now run "./configure"' echo
diff --git a/autogen.sh b/autogen.sh index 8b48960..a00eebe 100755 --- a/autogen.sh +++ b/autogen.sh @@ -88,5 +88,5 @@ echo "Building po/POTFILES.in..." make -s -f po/Rules-lyx srcdir=po top_srcdir=. po/POTFILES.in echo -echo 'run "./configure ; make"' +echo 'run "./configure && make"' echo