[Lldb-commits] [lldb] r296885 - Android.rules: fix building on mac
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 3 09:03:46 PST 2017
Author: labath
Date: Fri Mar 3 11:03:46 2017
New Revision: 296885
URL: http://llvm.org/viewvc/llvm-project?rev=296885&view=rev
Log:
Android.rules: fix building on mac
realpath is not available as an executable on mac. I give up, I am just
going to leave the path with ..'s in it.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/make/Android.rules
Modified: lldb/trunk/packages/Python/lldbsuite/test/make/Android.rules
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/make/Android.rules?rev=296885&r1=296884&r2=296885&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/make/Android.rules (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/make/Android.rules Fri Mar 3 11:03:46 2017
@@ -1,5 +1,4 @@
NDK_ROOT := $(shell dirname $(CC))/../../../../..
-NDK_ROOT := $(shell realpath $(NDK_ROOT))
ifeq "$(findstring 64, $(ARCH))" "64"
# lowest 64-bit API level
More information about the lldb-commits
mailing list