diff options
author | Tom Tromey <tromey@redhat.com> | 2005-09-27 18:51:40 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2005-09-27 18:51:40 +0000 |
commit | ab3fa9d34434e2aa491c216a3b9b20122179db64 (patch) | |
tree | 95f0db25555ff83dd49d87814f1d578bb9ea4813 /libjava/scripts/makemake.tcl | |
parent | f20731b7ca20be9dd32d7cf95ddeb9ef6baa4d1c (diff) | |
download | gcc-ab3fa9d34434e2aa491c216a3b9b20122179db64.zip gcc-ab3fa9d34434e2aa491c216a3b9b20122179db64.tar.gz gcc-ab3fa9d34434e2aa491c216a3b9b20122179db64.tar.bz2 |
configure, [...]: Rebuilt.
* configure, Makefile.in: Rebuilt.
* sources.am: Rebuilt.
* scripts/makemake.tcl (emit_bc_rule): Special-case qt.
* configure.ac (TOOLKIT): Handle Qt peers properly.
From-SVN: r104706
Diffstat (limited to 'libjava/scripts/makemake.tcl')
-rwxr-xr-x | libjava/scripts/makemake.tcl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libjava/scripts/makemake.tcl b/libjava/scripts/makemake.tcl index 6cecff7..6212caf 100755 --- a/libjava/scripts/makemake.tcl +++ b/libjava/scripts/makemake.tcl @@ -220,9 +220,10 @@ proc emit_bc_rule {package} { puts "\t@rm -f $tname" puts "" - # We skip this one because it is built into its own library and is - # handled specially in Makefile.am. - if {$loname != "gnu-java-awt-peer-gtk.lo"} { + # We skip these because they are built into their own libraries and + # are handled specially in Makefile.am. + if {$loname != "gnu-java-awt-peer-gtk.lo" + && $loname != "gnu-java-awt-peer-qt.lo"} { lappend bc_objects $loname } } |