From 25ff85dfe64866d1ec80321a04135d34ad6e6b90 Mon Sep 17 00:00:00 2001 From: andreasgriffin Date: Fri, 20 Dec 2024 22:34:47 +0100 Subject: [PATCH] sudo rights for make install --- tools/make_libusb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/make_libusb.sh b/tools/make_libusb.sh index 092e0e2..d100b6a 100755 --- a/tools/make_libusb.sh +++ b/tools/make_libusb.sh @@ -48,7 +48,7 @@ info "Building $pkgname..." || fail "Could not configure $pkgname. Please make sure you have a C compiler installed and try again." fi make "-j$CPU_COUNT" || fail "Could not build $pkgname" - make install || warn "Could not install $pkgname" + sudo make install || warn "Could not install $pkgname" . "$here/$pkgname/libusb/.libs/libusb-1.0.la" host_strip "$here/$pkgname/libusb/.libs/$dlname" TARGET_NAME="$dlname"