Port-mac68k archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: Disk errors on PowerBook 180



On Monday, May 18th, 2026 at 10:02 AM, Martin Husemann <martin%duskware.de@localhost> wrote:

> This looks like a simple bug testing MAKEVERBOSE (which is set via the optional
> -N argument, but here is tested unconditionally).
> 
> Try this patch:
> 
> --- 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
> 
> -       if [ "${MAKEVERBOSE}" -eq 0 ]
> +       if [ ${MAKEVERBOSE:-2} -eq 0 ]
>         then
>                 quiet="--quiet"
>         else
Done, but the script just exits without building anything just like it'd previously.


Home | Main Index | Thread Index | Old Index