Skip to content

Commit

Permalink
cmake portgroups: avoid overquoting archflags
Browse files Browse the repository at this point in the history
  • Loading branch information
jmroot committed Jun 15, 2018
1 parent d819b9b commit 2b01c29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _resources/port1.0/group/cmake-1.0.tcl
Expand Up @@ -151,7 +151,7 @@ platform darwin {
# ports might have need to access these variables at other times.
foreach archflag_var ${cmake._archflag_vars} {
global cmake._saved_${archflag_var}
configure.${archflag_var} [set cmake._saved_${archflag_var}]
configure.${archflag_var} {*}[set cmake._saved_${archflag_var}]
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion _resources/port1.0/group/cmake-1.1.tcl
Expand Up @@ -442,7 +442,7 @@ platform darwin {
# ports might have need to access these variables at other times.
foreach archflag_var ${cmake._archflag_vars} {
global cmake._saved_${archflag_var}
configure.${archflag_var} [set cmake._saved_${archflag_var}]
configure.${archflag_var} {*}[set cmake._saved_${archflag_var}]
}
}
}
Expand Down

0 comments on commit 2b01c29

Please sign in to comment.