mirror of
https://github.com/radareorg/radare2.git
synced 2026-04-13 05:16:09 +02:00
13 lines
262 B
Bash
Executable File
13 lines
262 B
Bash
Executable File
#!/bin/sh
|
|
touch libr/xps/deps.h
|
|
touch libr/xps/deps.mk
|
|
case "$1" in
|
|
--report|-r|--version|-V|-qV|--quiet-version|--help)
|
|
: # nothing to do here
|
|
;;
|
|
*)
|
|
[ dist/plugins-cfg/plugins.def.cfg -nt ./plugins.cfg ] && rm -f plugins.cfg
|
|
./configure-plugins $*
|
|
;;
|
|
esac
|