radare2/configure.hook
2020-12-05 23:39:28 +01:00

11 lines
197 B
Bash
Executable File

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