Re: Disk errors on PowerBook 180
luRaichu <[email protected]> Mon, 18 May 2026 14:19:09 +0000
| Newsgroups | gmane.os.netbsd.ports.mac68k |
|---|---|
| Message-ID | <QF0KVpxbWgg8eHa-Y-BPV6ERZVRzApAB1Y_QOMoTAN7z_ve8GacuIo3Yu27XEnhx_d7Wy2_Vf6NL8LXP71XzDZWEhoV9tbwkNaPB7BIdWWQ=@protonmail.com> |
On Monday, May 18th, 2026 at 10:02 AM, Martin Husemann <[email protected]>= wrote: > This looks like a simple bug testing MAKEVERBOSE (which is set via the op= tional > -N argument, but here is tested unconditionally). >=20 > Try this patch: >=20 > --- build.sh 16 Nov 2025 00:44:47 -0000 1.401 > +++ build.sh 18 May 2026 14:01:11 -0000 > @@ -2499,7 +2499,7 @@ > ;; > esac >=20 > - if [ "${MAKEVERBOSE}" -eq 0 ] > + if [ ${MAKEVERBOSE:-2} -eq 0 ] > then > quiet=3D"--quiet" > else Done, but the script just exits without building anything just like it'd pr= eviously.