radare2/configure.hook

11 lines
177 B
Bash
Executable File

#!/bin/sh
case "$1" in
--report|-r|--version|--help)
: # nothing to do here
;;
*)
[ plugins.def.cfg -nt ./plugins.cfg ] && rm -f plugins.cfg
./configure-plugins $*
;;
esac