aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lemon/apply-patches.sh
blob: 5ffb47c3727c33a17936173c78a9dc7aae984168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -e
# Patch lemon.c and lempar.c to silence static analyzer warnings.
# See also tools/lemon/README

# Strip trailing whitespace
sed -e 's/ \+$//' -i lemon.c lempar.c

# Other patches
for i in patches/*.patch; do
    echo "Applying $i"
    patch --silent -p1 -i "$i"
done

echo DONE