diff options
Diffstat (limited to 'rules/compat/ml1_s.sh')
-rwxr-xr-x | rules/compat/ml1_s.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rules/compat/ml1_s.sh b/rules/compat/ml1_s.sh index 210d1b6..da7a602 100755 --- a/rules/compat/ml1_s.sh +++ b/rules/compat/ml1_s.sh @@ -6,7 +6,9 @@ OUTFILE=base.ml1_s.part > $OUTFILE awk '{ - printf " * %s = pc+%s%%(v[1])\n", $1, $2; + if (index($2, "(") == 0) { + printf " * %s = pc+%s%%(v[1])\n", $1, $2; + } }' < $INDIR/layoutRename.lst >> $OUTFILE awk '{ |