From: Ian Lance Taylor Date: Wed, 17 Dec 1997 08:30:00 +0000 (+0000) Subject: * configure: Only put libide in GDB_TK if --enable-ide. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=be8da925758f59851177063ad35037404d461bc2;p=binutils-gdb.git * configure: Only put libide in GDB_TK if --enable-ide. --- diff --git a/ChangeLog b/ChangeLog index 3046ef6cd28..98ba3ebaa03 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +start-sanitize-ide +Wed Dec 17 11:27:59 1997 Ian Lance Taylor + + * configure: Only put libide in GDB_TK if --enable-ide. + +end-sanitize-ide start-sanitize-d30v Wed Dec 17 09:53:02 1997 Michael Meissner diff --git a/configure b/configure index eb61b64785b..381ac02937a 100755 --- a/configure +++ b/configure @@ -990,7 +990,9 @@ esac if [ "$enable_gdbtk" != "no" ]; then GDB_TK="all-tcl all-tk all-itcl all-tix all-libgui" # start-sanitize-ide - GDB_TK="all-tcl all-tk all-itcl all-tix all-libgui all-libide" + if [ "$enable_ide" != "no" ]; then + GDB_TK="all-tcl all-tk all-itcl all-tix all-libgui all-libide" + fi # end-sanitize-ide else GDB_TK=""