aboutsummaryrefslogtreecommitdiff
path: root/gdb/configure
diff options
context:
space:
mode:
authorRainer Orth <ro@TechFak.Uni-Bielefeld.DE>2010-01-25 13:22:02 +0000
committerRainer Orth <ro@TechFak.Uni-Bielefeld.DE>2010-01-25 13:22:02 +0000
commit6bcc772dec145e131137cf8cbc3786f3c4d96003 (patch)
tree505e1d50b9754d34827de8516854b25bba5e6ba7 /gdb/configure
parent1c1238a5e85604eb3e351c06973c61599072320f (diff)
downloadfsf-binutils-gdb-6bcc772dec145e131137cf8cbc3786f3c4d96003.zip
fsf-binutils-gdb-6bcc772dec145e131137cf8cbc3786f3c4d96003.tar.gz
fsf-binutils-gdb-6bcc772dec145e131137cf8cbc3786f3c4d96003.tar.bz2
* configure.ac: Only use host_os part when disabling TUI on osf.
Use test to check variables, prefix strings with x. * configure: Regenerate. * solib-osf.c (osf_current_sos): Initialize tail.
Diffstat (limited to 'gdb/configure')
-rwxr-xr-xgdb/configure6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/configure b/gdb/configure
index 4980106..d444b08 100755
--- a/gdb/configure
+++ b/gdb/configure
@@ -8518,11 +8518,11 @@ _ACEOF
# broken on alpha-osf.
case $host_os in
- alpha*-*-osf* )
- if "$enable_tui" = "yes"; then
+ osf* )
+ if test x"$enable_tui" = xyes; then
as_fn_error "Building GDB with TUI mode is not supported on this host" "$LINENO" 5
fi
- if "$enable_tui" = "auto"; then
+ if test x"$enable_tui" = xauto; then
enable_tui=no
fi
;;