diff options
author | Andrew Burgess <aburgess@redhat.com> | 2024-04-08 10:56:51 +0100 |
---|---|---|
committer | Andrew Burgess <aburgess@redhat.com> | 2024-04-08 10:56:51 +0100 |
commit | 36192c2be137d2af13fbc2d528de05b41d546805 (patch) | |
tree | 344109b9e3eb231fd0b2b765989b40918af725b5 /gdb/configure | |
parent | 76bbe1f5970dd5ba5642c5e31825786226619c56 (diff) | |
download | gdb-36192c2be137d2af13fbc2d528de05b41d546805.zip gdb-36192c2be137d2af13fbc2d528de05b41d546805.tar.gz gdb-36192c2be137d2af13fbc2d528de05b41d546805.tar.bz2 |
gdb/configure: realign the AC_ARG_ENABLE(sim, ....) block
Following the suggestion in this review comment:
https://inbox.sourceware.org/gdb-patches/9420bbb0-2614-4847-9157-8562f8a62d03@simark.ca
this commit realigns the AC_ARG_ENABLE(sim, ....) block. I've added
additional [...] quoting in a couple of places, which is inline with
how other AC_ARG_ENABLE blocks are formatted within GDB's configure.ac
file.
There should be no change in how GDB configures or builds after this
commit.
Diffstat (limited to 'gdb/configure')
-rwxr-xr-x | gdb/configure | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/configure b/gdb/configure index ffbc144..a77e3e2 100755 --- a/gdb/configure +++ b/gdb/configure @@ -32850,13 +32850,13 @@ fi if test "${enable_sim+set}" = set; then : enableval=$enable_sim; { $as_echo "$as_me:${as_lineno-$LINENO}: enable_sim = $enable_sim" >&5 $as_echo "$as_me: enable_sim = $enable_sim" >&6;}; - { $as_echo "$as_me:${as_lineno-$LINENO}: enableval = ${enableval}" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: enableval = ${enableval}" >&5 $as_echo "$as_me: enableval = ${enableval}" >&6;}; - case "${enableval}" in - yes) ignore_sim=false ;; - no) ignore_sim=true ;; - *) ignore_sim=false ;; - esac + case "${enableval}" in + yes) ignore_sim=false ;; + no) ignore_sim=true ;; + *) ignore_sim=false ;; + esac else ignore_sim=false fi |