From f92a1522a37895cb2ff1e1b8c93fa154a352f976 Mon Sep 17 00:00:00 2001 From: Juergen Hoetzel Date: Tue, 30 Oct 2018 16:50:07 +0100 Subject: [PATCH] makepkg: Check for "fakeroot" binary --- aur.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aur.py b/aur.py index bf23c5e..159e75c 100644 --- a/aur.py +++ b/aur.py @@ -125,6 +125,7 @@ def install_with_makepkg(module, package): """ Install the specified package with makepkg """ + module.get_bin_path('fakeroot', required=True) f = open_url('https://aur.archlinux.org/rpc/?v=5&type=info&arg={}'.format(package)) result = json.loads(f.read().decode('utf8')) if result['resultcount'] != 1: