Remove redundant getBin function

This commit is contained in:
Sander van der Burg 2018-12-05 20:59:39 +01:00
parent 5e690b47fd
commit b99ac1c904

View File

@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
postPatch = ''
# very ugly way of replacing the adb calls
sed -e 's|"adb |"${stdenv.lib.getBin adb}/bin/adb |g' \
sed -e 's|"adb |"${adb}/bin/adb |g' \
-i adbfs.cpp
'';