Hello, the attached patch fixes one minor missed echo statement before exit 1 to redirect it to stderr instead of the stdout in the config.sub file.
Signed-off-by: Peter Kokot <peterko...@gmail.com> diff --git a/config.sub b/config.sub index 2d5bbee..f208558 100755 --- a/config.sub +++ b/config.sub @@ -89,7 +89,7 @@ while test $# -gt 0 ; do - ) # Use stdin as input. break ;; -* ) - echo "$me: invalid option $1$help" + echo "$me: invalid option $1$help" >&2 exit 1 ;; *local*) -- Peter Kokot
diff --git a/config.sub b/config.sub index 2d5bbee..f208558 100755 --- a/config.sub +++ b/config.sub @@ -89,7 +89,7 @@ while test $# -gt 0 ; do - ) # Use stdin as input. break ;; -* ) - echo "$me: invalid option $1$help" + echo "$me: invalid option $1$help" >&2 exit 1 ;; *local*)
_______________________________________________ config-patches mailing list config-patches@gnu.org https://lists.gnu.org/mailman/listinfo/config-patches