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

Unified Diff: yasm-filter.sh

Issue 9533003: libjpeg_turbo: Filter out "section flags ignored on section redeclaration" warnings on mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libjpeg_turbo/
Patch Set: Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « libjpeg.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: yasm-filter.sh
===================================================================
--- yasm-filter.sh (revision 0)
+++ yasm-filter.sh (revision 0)
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+# Filters out "section flags ignored on section redeclaration" warnings. See
+# libjpeg.gyp for why.
+# http://hans.fugal.net/blog/2008/08/25/filter-stderr/
+"$@" 2> >(grep -v "section flags ignored on section redeclaration" 1>&2)
Property changes on: yasm-filter.sh
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:eol-style
+ LF
« no previous file with comments | « libjpeg.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698