From fdf8722491cf5fd21b5d897578c24fec4bb62682 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Tue, 24 Feb 2015 14:24:47 -0800 Subject: [PATCH] Fix Mac build. Prior to https://android-review.googlesource.com/#/c/134253/ the makefile had assumed !Windows was the same as Linux, so the Mac was actually getting all the Linux sources as well. I mistakenly didn't add fdevent.cpp to the Darwin sources in that change. Change-Id: I4e12a394e9a2baf7c1e3c711a01a6b5fccbf79d9 --- adb/Android.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adb/Android.mk b/adb/Android.mk index 265626822..327591fe7 100644 --- a/adb/Android.mk +++ b/adb/Android.mk @@ -28,7 +28,7 @@ LIBADB_CFLAGS := \ -D_XOPEN_SOURCE -D_GNU_SOURCE \ -fvisibility=hidden \ -LIBADB_darwin_SRC_FILES := get_my_path_darwin.c usb_osx.c +LIBADB_darwin_SRC_FILES := fdevent.cpp get_my_path_darwin.c usb_osx.c LIBADB_linux_SRC_FILES := fdevent.cpp get_my_path_linux.c usb_linux.c LIBADB_windows_SRC_FILES := get_my_path_windows.c sysdeps_win32.c usb_windows.c