diff -Naur WiringPi-2.61-1/build WiringPi-2.61-1.patch/build --- WiringPi-2.61-1/build 2022-10-08 15:07:39.250546403 +0000 +++ WiringPi-2.61-1.patch/build 2022-10-08 15:13:59.239811023 +0000 @@ -131,11 +131,11 @@ cd wiringPi $sudo make uninstall if [ x$1 = "xstatic" ]; then - make -j5 static + make -j5 DESTDIR="$DESTDIR" PREFIX="$PREFIX" static check_make_ok $sudo make install-static else - make -j5 + make DESTDIR="$DESTDIR" PREFIX="$PREFIX" -j5 check_make_ok $sudo make install fi @@ -146,11 +146,11 @@ cd ../devLib $sudo make uninstall if [ x$1 = "xstatic" ]; then - make -j5 static + make -j5 DESTDIR="$DESTDIR" PREFIX="$PREFIX" static check_make_ok $sudo make install-static else - make -j5 + make -j5 DESTDIR="$DESTDIR" PREFIX="$PREFIX" check_make_ok $sudo make install fi @@ -159,7 +159,7 @@ echo echo "GPIO Utility" cd ../gpio - make -j5 + make -j5 DESTDIR="$DESTDIR" PREFIX="$PREFIX" check_make_ok $sudo make install check_make_ok