Fix android library mismatch warning

This commit is contained in:
pancake 2013-11-10 05:09:36 +01:00
parent 1b2ba18c0e
commit 13707310aa
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ BINDEPS+=r_sign r_lang r_asm r_syscall r_db r_hash
BINDEPS+=r_magic r_socket r_flags r_util r_egg r_crypto
include ../rules.mk
CFLAGS+=-DGIT_TAP=\"$(GIT_TAP)\"
CFLAGS+=-DR2_GITTAP=\"$(GIT_TAP)\"
sign:
ldid -Sradare2.xml radare2

View File

@ -19,7 +19,7 @@ static struct r_core_t r;
static int verify_version(int show) {
int i, ret;
typedef const char* (*vc)();
const char *base = GIT_TAP;
const char *base = R2_GITTAP;
struct vcs_t {
const char *name;
vc callback;