diff options
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-cross.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross.inc b/meta/recipes-devtools/gcc/gcc-cross.inc index 6acf8c5848..b16c57d399 100644 --- a/meta/recipes-devtools/gcc/gcc-cross.inc +++ b/meta/recipes-devtools/gcc/gcc-cross.inc | |||
@@ -65,11 +65,11 @@ then | |||
65 | exit 1; | 65 | exit 1; |
66 | fi | 66 | fi |
67 | 67 | ||
68 | echo "\$target" | grep −q "@" >& /dev/null | 68 | echo "\$target" | grep "@" >& /dev/null |
69 | if [ "x\$?" = "x0" ] | 69 | if [ "x\$?" = "x0" ] |
70 | then | 70 | then |
71 | user=echo \$target | cut -d '@' -f 1 | 71 | user=\$(echo \$target | cut -d '@' -f 1) |
72 | target=echo \$target | cut -d '@' -f 2 | 72 | target=\$(echo \$target | cut -d '@' -f 2) |
73 | else | 73 | else |
74 | user=\$USER | 74 | user=\$USER |
75 | fi | 75 | fi |