changeset 4858:81b2b9bd8d25

<fizzie> sed -i -e \'s/gcc/gcc -trigraphs/\' bin/runc
author HackBot
date Wed, 24 Sep 2014 06:23:03 +0000
parents 4d57b8536955
children 6ec81e1af060
files bin/runc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bin/runc	Fri Sep 19 11:10:19 2014 +0000
+++ b/bin/runc	Wed Sep 24 06:23:03 2014 +0000
@@ -1,4 +1,4 @@
 #!/bin/bash
 t=`tempfile`
-echo -e "$@" | gcc -o $t -x c - 2>/dev/null && $t
+echo -e "$@" | gcc -trigraphs -o $t -x c - 2>/dev/null && $t
 rm $t