radare2/configure.hook
2014-03-28 16:35:55 +01:00

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