Skip to content

Commit 54278a4

Browse files
committed
SCons: Restore hardcoded build path on Android
1 parent 0e2d152 commit 54278a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

platform/android/SCsub

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ env_thirdparty.disable_warnings()
4444
thirdparty_obj = env_thirdparty.SharedObject("#thirdparty/misc/ifaddrs-android.cc")
4545
android_objects.append(thirdparty_obj)
4646

47-
lib = env_android.add_shared_library("libgodot", android_objects)
47+
# FIXME: Hardcoded to bin to ensure the directory exists if not redirecting build objects.
48+
lib = env_android.add_shared_library("#bin/libgodot", android_objects, redirect_build_objects=False)
4849

4950
# Needed to force rebuilding the platform files when the thirdparty code is updated.
5051
env.Depends(lib, thirdparty_obj)

0 commit comments

Comments
 (0)