mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 15:10:48 +01:00
10 lines
252 B
Bash
10 lines
252 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# apply.sh:
|
||
|
# run spatch with appropriate includes and builtins for the Tor source code
|
||
|
|
||
|
top="$(dirname "$0")/../.."
|
||
|
|
||
|
spatch -macro_file_builtins "$top"/scripts/coccinelle/tor-coccinelle.h \
|
||
|
-I "$top" -I "$top"/src -I "$top"/ext "$@"
|