drsuapi_dissect_element_DsReplicaObjectIdentifier_dn parents append
[wireshark-sm.git] / tools / lemon / apply-patches.sh
blobe445c87a59557ac0ddc1d6ef298883b5deef34e3
1 #!/bin/sh -e
2 # Patch lemon.c and lempar.c to silence static analyzer warnings.
3 # See also tools/lemon/README
5 # Strip trailing whitespace
6 sed -e 's/ \+$//' -i lemon.c lempar.c
8 # Other patches
9 if [ -d "patches" ]; then
10 for i in patches/*.patch; do
11 echo "Applying $i"
12 patch --silent -p1 -i "$i"
13 done
16 echo DONE