mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-29 16:10:52 +00:00
205a9285a4
* Add --with-libversion flag to configure - Make OpenBSD version numbering system happy * Force -ldl for HURD * Fix off by one bug in grub/fs/fat.c
13 lines
232 B
Bash
Executable File
13 lines
232 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Look for the 'acr' tool here: http://www.nopcode.org/
|
|
# Clone last version of ACR from here:
|
|
# hg clone http://youterm.com/hg/acr
|
|
#
|
|
# -- pancake
|
|
acr -p
|
|
if [ -n "$1" ]; then
|
|
echo "./configure $@"
|
|
./configure $@
|
|
fi
|