mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-02 10:16:21 +00:00
b60af6d878
- add missing sys/gtk.sh * Define TODO for 0.8.6 * Add URL attribute in dot graphs for 'ag' command - as requested by @hteso for bokken * Empty graphs are now printing nothing to stdout - same as above
12 lines
221 B
Bash
Executable File
12 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
case "$1" in
|
|
--version|--help)
|
|
: # nothing to do here
|
|
;;
|
|
*)
|
|
[ plugins.def.cfg -nt ./plugins.cfg ] && rm -f plugins.cfg
|
|
[ ! -e plugins.cfg ] && ./configure-plugins $@
|
|
r2-bindings/configure-langs $@
|
|
;;
|
|
esac
|