mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2025-11-15 07:38:12 +00:00
This is an impartial set of transformations to help port the drivers to the new interfaces.
10 lines
170 B
Bash
Executable File
10 lines
170 B
Bash
Executable File
#!/bin/sh
|
|
|
|
pushd $( dirname "$0" )
|
|
all="all.cocci"
|
|
real="/tmp/real.cocci"
|
|
cat "$all" | grep -P '^(?!#).+' | xargs cat >$real || exit 1
|
|
popd
|
|
|
|
spatch --sp-file $real "$@"
|