Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 16d85915 authored by Josh Gao's avatar Josh Gao Committed by android-build-merger
Browse files

Merge "Revert "adb: turn on libusb by default."" am: b2206767 am: de931dab am: 947a3018

am: cb39742d

Change-Id: Ibaec7fe7dabb5d640b48acf0b9e5b7d2688712bd
parents 8ee91bf7 cb39742d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -192,7 +192,7 @@ bool should_use_libusb() {
#if defined(_WIN32) || !ADB_HOST
    return false;
#else
    static bool disable = getenv("ADB_LIBUSB") && strcmp(getenv("ADB_LIBUSB"), "0") == 0;
    return !disable;
    static bool enable = getenv("ADB_LIBUSB") && strcmp(getenv("ADB_LIBUSB"), "1") == 0;
    return enable;
#endif
}