Fix braino in creating the link.
The paths were given in the wrong order.
Test: build-art-target-golem
Bug: 154074847
Change-Id: Idac065bf8fd587b411edfd269d93c88c06fa28c3
diff --git a/Android.mk b/Android.mk
index a73ae45..6e8673d 100644
--- a/Android.mk
+++ b/Android.mk
@@ -711,7 +711,7 @@
sed -i '/libprofiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt
sed -i '/libartbased.so/d' $(TARGET_OUT)/etc/public.libraries.txt
# The 'art' script will look for a 'com.android.art' directory.
- ln -sf $(TARGET_OUT)/apex/com.android.art $(TARGET_OUT)/apex/com.android.art.release
+ ln -sf com.android.art.release $(TARGET_OUT)/apex/com.android.art
########################################################################
# Phony target for building what go/lem requires on host.