OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/bash | |
2 # | |
3 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
4 # Use of this source code is governed by a BSD-style license that can be | |
5 # found in the LICENSE file. | |
6 # | |
7 # Note how we don't actually link anything here. | |
8 | |
9 # sed always does greedy matching. This is ok in the compiler wrapper scripts | |
10 # because | |
11 TARGETOBJ=`echo $@ | perl -pe 's/.*-o ([^\s]+).*/$1/;'` | |
12 | |
13 touch $TARGETOBJ | |
OLD | NEW |