| Index: tools/gn/bootstrap/build.ninja.template
 | 
| diff --git a/tools/gn/bootstrap/build.ninja.template b/tools/gn/bootstrap/build.ninja.template
 | 
| index 2ef5301e328a5a2e31437a6a33b777b86c8fd221..e59854b189e965d52f15b5d9daff3aac1850e4db 100644
 | 
| --- a/tools/gn/bootstrap/build.ninja.template
 | 
| +++ b/tools/gn/bootstrap/build.ninja.template
 | 
| @@ -1,9 +1,3 @@
 | 
| -cc = cc
 | 
| -cxx = c++
 | 
| -ld = $cc
 | 
| -ldxx = $cxx
 | 
| -ar = ar
 | 
| -
 | 
|  rule cc
 | 
|    command = $cc -MMD -MF $out.d $defines $includes $cflags $cflags_c -c $in -o $out
 | 
|    description = CC $out
 | 
| @@ -21,5 +15,5 @@ rule alink_thin
 | 
|    description = AR $out
 | 
|  
 | 
|  rule link
 | 
| -  command = $ld $ldflags -o $out -Wl,--start-group $in $solibs -Wl,--end-group $libs
 | 
| +  command = $ld $ldflags -o $out -Wl,--start-group $in $libs -Wl,--end-group $solibs
 | 
|    description = LINK $out
 | 
| 
 |