* docs/grub-dev.texi (Finding your way around): The build system no
authorColin Watson <cjwatson@ubuntu.com>
Thu, 26 Jun 2014 13:20:17 +0000 (14:20 +0100)
committerColin Watson <cjwatson@ubuntu.com>
Thu, 26 Jun 2014 13:20:17 +0000 (14:20 +0100)
longer uses AutoGen directly.

ChangeLog
docs/grub-dev.texi

index be322d4..5109c5a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-06-26  Colin Watson  <cjwatson@ubuntu.com>
+
+       * docs/grub-dev.texi (Finding your way around): The build system no
+       longer uses AutoGen directly.
+
 2014-06-21  Роман Пехов <roman_pekhov>
 
        * grub-core/commands/loadenv.c (check_blocklists): Fix overlap check.
index 7c6244c..a9f4de6 100644 (file)
@@ -228,12 +228,12 @@ The opening @samp{/*} and closing @samp{*/} should be placed together on a line
 Here is a brief map of the GRUB code base.
 
 GRUB uses Autoconf and Automake, with most of the Automake input generated
-by AutoGen.  The top-level build rules are in @file{configure.ac},
+by a Python script.  The top-level build rules are in @file{configure.ac},
 @file{grub-core/Makefile.core.def}, and @file{Makefile.util.def}.  Each
 block in a @file{*.def} file represents a build target, and specifies the
 source files used to build it on various platforms.  The @file{*.def} files
-are processed into AutoGen input by @file{gentpl.py} (which you only need to
-look at if you are extending the build system).  If you are adding a new
+are processed into Automake input by @file{gentpl.py} (which you only need
+to look at if you are extending the build system).  If you are adding a new
 module which follows an existing pattern, such as a new command or a new
 filesystem implementation, it is usually easiest to grep
 @file{grub-core/Makefile.core.def} and @file{Makefile.util.def} for an