From e369f0e284337f6a369a160ae92a714a1684a227 Mon Sep 17 00:00:00 2001 From: Margaux Clerc Date: Fri, 14 Aug 2015 12:12:11 +0200 Subject: [PATCH] Disable realpath for android --- coreapi/lpconfig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/lpconfig.c b/coreapi/lpconfig.c index c6062ae55..ba15adbe0 100644 --- a/coreapi/lpconfig.c +++ b/coreapi/lpconfig.c @@ -86,7 +86,7 @@ struct _LpConfig{ }; char* lp_realpath(const char* file, char* name) { -#if defined(_WIN32) || defined(__QNX__) +#if defined(_WIN32) || defined(__QNX__) || defined(ANDROID) return ms_strdup(file); #else char * output = realpath(file, name);