This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Add a missing `"'


Hi,

I checked in this patch to fix

Running
/export/gnu/import/git/binutils/binutils/testsuite/binutils-all/dlltool.exp
...
ERROR: tcl error sourcing
/export/gnu/import/git/binutils/binutils/testsuite/binutils-all/dlltool.exp.
ERROR: missing "
in expression "...ingw*"] && ![istarget "arm-*-pe*]"
    (parsing expression "![istarget "i*86-*-*"]...")
    invoked from within
"if {![istarget "i*86-*-*"] && ![istarget "x86_64-*-mingw*"] &&
![istarget "arm-*-pe*]} {
    return
}"


H.J.
---
diff --git a/binutils/testsuite/ChangeLog b/binutils/testsuite/ChangeLog
index 1b6bafa..3b08cda 100644
--- a/binutils/testsuite/ChangeLog
+++ b/binutils/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2010-04-30  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* binutils-all/dlltool.exp: Add a missing `"'.
+
 2010-04-27  Kai Tietz  <kai.tietz@onevision.com>
 
 	* binutils-all/dlltool.exp: Allow test for
diff --git a/binutils/testsuite/binutils-all/dlltool.exp b/binutils/testsuite/binutils-all/dlltool.exp
index d6f8e3b..5a19cf2 100644
--- a/binutils/testsuite/binutils-all/dlltool.exp
+++ b/binutils/testsuite/binutils-all/dlltool.exp
@@ -14,7 +14,9 @@
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
 
-if {![istarget "i*86-*-*"] && ![istarget "x86_64-*-mingw*"] && ![istarget "arm-*-pe*]} {
+if {![istarget "i*86-*-*"]
+    && ![istarget "x86_64-*-mingw*"]
+    && ![istarget "arm-*-pe*"]} {
     return
 }
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]