diff mbox series

configure: surface deprecated targets in the help output

Message ID 20201029201449.6926-1-alex.bennee@linaro.org
State Superseded
Headers show
Series configure: surface deprecated targets in the help output | expand

Commit Message

Alex Bennée Oct. 29, 2020, 8:14 p.m. UTC
Show the targets but keep them separate from the main list.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
 configure | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Philippe Mathieu-Daudé Oct. 29, 2020, 9:28 p.m. UTC | #1
On 10/29/20 9:14 PM, Alex Bennée wrote:
> Show the targets but keep them separate from the main list.

> 

> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

> ---

>  configure | 4 +++-

>  1 file changed, 3 insertions(+), 1 deletion(-)

> 

> diff --git a/configure b/configure

> index 55e07c82dd..6c2e9ff37c 100755

> --- a/configure

> +++ b/configure

> @@ -1644,9 +1644,11 @@ Standard options:

>    --prefix=PREFIX          install in PREFIX [$prefix]

>    --interp-prefix=PREFIX   where to find shared libraries, etc.

>                             use %M for cpu name [$interp_prefix]

> -  --target-list=LIST       set target list (default: build everything)

> +  --target-list=LIST       set target list (default: build all non-deprecated)

>  $(echo Available targets: $default_target_list | \

>    fold -s -w 53 | sed -e 's/^/                           /')

> +$(echo Deprecated targets: $deprecated_targets_list | \

> +  fold -s -w 53 | sed -e 's/^/                           /')

>    --target-list-exclude=LIST exclude a set of targets from the default target-list

>  

>  Advanced options (experts only):

> 


Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Thomas Huth Oct. 30, 2020, 3:24 p.m. UTC | #2
On 29/10/2020 21.14, Alex Bennée wrote:
> Show the targets but keep them separate from the main list.

> 

> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

> ---

>  configure | 4 +++-

>  1 file changed, 3 insertions(+), 1 deletion(-)

> 

> diff --git a/configure b/configure

> index 55e07c82dd..6c2e9ff37c 100755

> --- a/configure

> +++ b/configure

> @@ -1644,9 +1644,11 @@ Standard options:

>    --prefix=PREFIX          install in PREFIX [$prefix]

>    --interp-prefix=PREFIX   where to find shared libraries, etc.

>                             use %M for cpu name [$interp_prefix]

> -  --target-list=LIST       set target list (default: build everything)

> +  --target-list=LIST       set target list (default: build all non-deprecated)

>  $(echo Available targets: $default_target_list | \

>    fold -s -w 53 | sed -e 's/^/                           /')

> +$(echo Deprecated targets: $deprecated_targets_list | \

> +  fold -s -w 53 | sed -e 's/^/                           /')

>    --target-list-exclude=LIST exclude a set of targets from the default target-list

>  

>  Advanced options (experts only):

> 


Reviewed-by: Thomas Huth <thuth@redhat.com>
diff mbox series

Patch

diff --git a/configure b/configure
index 55e07c82dd..6c2e9ff37c 100755
--- a/configure
+++ b/configure
@@ -1644,9 +1644,11 @@  Standard options:
   --prefix=PREFIX          install in PREFIX [$prefix]
   --interp-prefix=PREFIX   where to find shared libraries, etc.
                            use %M for cpu name [$interp_prefix]
-  --target-list=LIST       set target list (default: build everything)
+  --target-list=LIST       set target list (default: build all non-deprecated)
 $(echo Available targets: $default_target_list | \
   fold -s -w 53 | sed -e 's/^/                           /')
+$(echo Deprecated targets: $deprecated_targets_list | \
+  fold -s -w 53 | sed -e 's/^/                           /')
   --target-list-exclude=LIST exclude a set of targets from the default target-list
 
 Advanced options (experts only):