diff options
author | Ian Lance Taylor <ian@airs.com> | 1992-09-01 01:12:41 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1992-09-01 01:12:41 +0000 |
commit | d257b46f8821410235e89f263930bd6879e91648 (patch) | |
tree | e4271aec144b5787108da877b731323305b77d6f | |
parent | fd9d7e4a7628fa5e180aee255c5c5b13a9c0458c (diff) | |
download | gdb-d257b46f8821410235e89f263930bd6879e91648.zip gdb-d257b46f8821410235e89f263930bd6879e91648.tar.gz gdb-d257b46f8821410235e89f263930bd6879e91648.tar.bz2 |
Sun Aug 30 21:12:11 1992 Ian Lance Taylor (ian@cygnus.com)
* configure: added -program_transform_name option, used as
argument to sed when installing programs.
configure.texi: added documentation for -program_prefix,
-program_suffix and -program_transform_name.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | configure.texi | 24 |
2 files changed, 31 insertions, 0 deletions
@@ -1,3 +1,10 @@ +Sun Aug 30 21:12:11 1992 Ian Lance Taylor (ian@cygnus.com) + + * configure: added -program_transform_name option, used as + argument to sed when installing programs. + configure.texi: added documentation for -program_prefix, + -program_suffix and -program_transform_name. + Thu Aug 27 21:59:44 1992 John Gilmore (gnu@cygnus.com) * config.sub: Accept i486 where i386 ok. diff --git a/configure.texi b/configure.texi index 3ed1d09..b9170a3 100644 --- a/configure.texi +++ b/configure.texi @@ -244,6 +244,30 @@ This option sets the @code{configure} variable @code{prefix}. Generated Makefiles will have their @code{prefix} variables set to this value. (See @ref{Install Details}.) +@item -program_prefix=@var{string} +Configure the source to install certain programs using @var{string} as a +prefix. This applies to programs which might be used for cross-compilation, +such as the compiler and the binutils, and also to programs which have the same +name as a common Unix program, such as make. + +This option sets the @code{configure} variable @code{program_prefix}. +Generated Makefiles will have their @code{program_prefix} variables set to this +value. (See @ref{Install Details}.) + +@item -program_suffix=@var{string} +Configure the source to install certain programs using @var{string} as a +suffix. This applies to programs which might be used for cross-compilation. + +@item -program_transform_name=@var{sed-pattern} +Configure the source to install certain programs using the names that result +from passing the usual name through @code{sed} invoked with @var{sed-pattern}. +This option may be given multiple times; each @var{sed-pattern} will be applied +in turn. This applies to programs which might be used for cross-compilation. + +This option sets the @code{configure} variable @code{program_transform_name}. +Generated Makefiles will have their @code{program_transform_name} variables set +to this value. (See @ref{Install Details}.) + @item -recurring @c Wouldn't it make more sense to call this "-quiet"? (FIXME). This option is used internally by @code{configure} when recurring on |