+1998-10-29 Gary V. Vaughan <gvaughan@oranda.demon.co.uk>
+
+ * automake.in (parse_arguments): Fixed type of -c for copying
+
1998-10-30 Tom Tromey <tromey@cygnus.com>
+ * automake.texi (Install): Documented DESTDIR more fully. From
+ Jeff Garzik.
+
* automake.in (MACRO_PATTERN): Recognize `+='.
(BOGUS_MACRO_PATTERN): Likewise.
(read_am_file): Handle `+=' assignments.
@samp{install-exec}. All other user-defined prefixes are installed by
@samp{install-data}.
+@vindex DESTDIR
Automake generates support for the @samp{DESTDIR} variable in all
-install rules; see @ref{Makefile Conventions, , , standards, The GNU
+install rules. @samp{DESTDIR} is used during the @samp{make install}
+step to relocate install objects into a staging area. Each object and
+path is prefixed with the value of @samp{DESTDIR} before being copied
+into the install area. Here is an example of typical DESTDIR usage:
+
+@example
+make DESTDIR=/tmp/staging install
+@end example
+
+This places install objects in a directory tree built under
+@file{/tmp/staging}. If @file{/gnu/bin/foo} and
+@file{/gnu/share/aclocal/foo.m4} are to be installed, the above command
+would install @file{/tmp/staging/gnu/bin/foo} and
+@file{/tmp/staging/gnu/share/aclocal/foo.m4}.
+
+This feature is commonly used to build install images and packages. For
+more information, see @ref{Makefile Conventions, , , standards, The GNU
Coding Standards}.
-@vindex DESTDIR
@node Clean, Dist, Install, Top