Skip to content

Commit 48a767f

Browse files
berolinuxmar-v-in
authored andcommitted
Handle OUT_DIR being relative to the top directory (microg#9)
The symlink created by Android.mk is in LOCAL_PATH, while OUT_DIR may be relative to the top directory (AOSP 8.0), causing the symlink to point at a wrong location. Make sure the symlink points at an absolute path. Signed-off-by: Bernhard Rosenkränzer <bero@lindev.ch>
1 parent b890c26 commit 48a767f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Android.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ LOCAL_PACKAGE_NAME := GsfProxy
2121

2222
gsfproxy_root := $(LOCAL_PATH)
2323
gsfproxy_dir := services-framework-proxy
24-
gsfproxy_out := $(TARGET_COMMON_OUT_ROOT)/obj/APPS/$(LOCAL_MODULE)_intermediates
24+
gsfproxy_out := $(realpath $(TARGET_COMMON_OUT_ROOT))/obj/APPS/$(LOCAL_MODULE)_intermediates
2525
gsfproxy_build := $(gsfproxy_root)/$(gsfproxy_dir)/build
2626
gsfproxy_apk := build/outputs/apk/services-framework-proxy-release-unsigned.apk
2727

0 commit comments

Comments
 (0)