summaryrefslogtreecommitdiff
path: root/libjava/scripts
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2005-09-27 18:51:40 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2005-09-27 18:51:40 +0000
commitb2382601bb72b7c9f8e1e1c461498f6e03c8217e (patch)
tree95f0db25555ff83dd49d87814f1d578bb9ea4813 /libjava/scripts
parent421828b0b5dc7574bccb3ed8a292a6c6e05058ee (diff)
downloadgcc-b2382601bb72b7c9f8e1e1c461498f6e03c8217e.tar.gz
* configure, Makefile.in: Rebuilt.
* sources.am: Rebuilt. * scripts/makemake.tcl (emit_bc_rule): Special-case qt. * configure.ac (TOOLKIT): Handle Qt peers properly. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@104706 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/scripts')
-rwxr-xr-xlibjava/scripts/makemake.tcl7
1 files changed, 4 insertions, 3 deletions
diff --git a/libjava/scripts/makemake.tcl b/libjava/scripts/makemake.tcl
index 6cecff7ffd9..6212caf0db4 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
}
}