From de532d33e150d67746cdfff09bb0b65f7911f5bd Mon Sep 17 00:00:00 2001 From: Cody P Schafer Date: Tue, 6 Oct 2015 10:34:21 -0400 Subject: [PATCH] rust: add missing comma in sed processing of cfg/X.mk file --- recipes/rust/rust.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/rust/rust.inc b/recipes/rust/rust.inc index aad93a1..53a92a5 100644 --- a/recipes/rust/rust.inc +++ b/recipes/rust/rust.inc @@ -232,7 +232,7 @@ def rust_gen_mk_cfg(d, thing): '-e', 's/^CROSS_PREFIX_{}.*$//'.format(sys), '-e', '2 a CROSS_PREFIX_{} := {}'.format(sys, prefix), '-e', 's/^CFG_LLVM_TARGET_.*$//', - '-e' '2 a CFG_LLVM_TARGET_{} := {}'.format(sys, llvm_target), + '-e', '2 a CFG_LLVM_TARGET_{} := {}'.format(sys, llvm_target), '-e', 's/^CC_{}=.*$/CC_{} := gcc/'.format(sys, sys), '-e', 's/^CXX_{}.*$/CXX_{} := g++/'.format(sys, sys), '-e', 's/^CPP_{}.*$/CPP_{} := gcc -E/'.format(sys, sys),