additional_flags=$TOOL_OPTIONS; allows for whitespace in $TOOL_OPTIONS.
* objc.exp (objc_target_compile): Likewise.
* treelang.exp (treelang_target_compile): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95912
138bc75d-0d04-0410-961f-
82ee72b054a4
+2005-03-04 Matthew Sachs <msachs@apple.com>
+
+ * gcc.exp (gcc_target_compile): Put braces around
+ additional_flags=$TOOL_OPTIONS; allows for whitespace in $TOOL_OPTIONS.
+ * objc.exp (objc_target_compile): Likewise.
+ * treelang.exp (treelang_target_compile): Likewise.
+
2005-03-04 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
PR fortran/19673
# TOOL_OPTIONS must come first, so that it doesn't override testcase
# specific options.
if [info exists TOOL_OPTIONS] {
- set options [concat "additional_flags=$TOOL_OPTIONS" $options];
+ set options [concat "{additional_flags=$TOOL_OPTIONS}" $options];
}
if [target_info exists gcc,timeout] {
lappend options "timeout=[target_info gcc,timeout]"
# TOOL_OPTIONS must come first, so that it doesn't override testcase
# specific options.
if [info exists TOOL_OPTIONS] {
- set options [concat "additional_flags=$TOOL_OPTIONS" $options];
+ set options [concat "{additional_flags=$TOOL_OPTIONS}" $options];
}
# If we have built libobjc along with the compiler (which usually
# TOOL_OPTIONS must come first, so that it doesn't override testcase
# specific options.
if [info exists TOOL_OPTIONS] {
- set options [concat "additional_flags=$TOOL_OPTIONS" $options];
+ set options [concat "{additional_flags=$TOOL_OPTIONS}" $options];
}
# If we have built libtreelang along with the compiler (which usually