We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddaec5f commit da83fa8Copy full SHA for da83fa8
tools/mksymtab.sh
@@ -53,7 +53,9 @@ if [ -z "$varlist" ]; then
53
54
# Remove the intersection between them, and the remaining symbols are found in the main image
55
common=`echo "$varlist" | tr ' ' '\n' | grep -Fxf <(echo "$deflist" | tr ' ' '\n') | tr '\n' ' '`
56
- varlist=`echo $varlist | sed "s/$common//g"`
+ if [ "x$common" != "x" ]; then
57
+ varlist=`echo $varlist | sed "s/$common//g"`
58
+ fi
59
fi
60
61
0 commit comments