Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(561)

Side by Side Diff: chrome/tools/build/linux/sed.sh

Issue 199105: Continue with the FreeBSD port - this version builds and links, though... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/test/automation/automation_messages_internal.h ('k') | ipc/ipc.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
1 #!/bin/bash 1 #!/usr/bin/env bash
2 2
3 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # Does the equivalent of 7 # Does the equivalent of
8 # sed -e A -e B infile > outfile 8 # sed -e A -e B infile > outfile
9 # in a world where doing it from gyp eats the redirection. 9 # in a world where doing it from gyp eats the redirection.
10 10
11 infile="$1" 11 infile="$1"
12 outfile="$2" 12 outfile="$2"
13 shift 2 13 shift 2
14 14
15 sed "$@" "$infile" > "$outfile" 15 sed "$@" "$infile" > "$outfile"
OLDNEW
« no previous file with comments | « chrome/test/automation/automation_messages_internal.h ('k') | ipc/ipc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698