From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <9front-bounces@9front.inri.net> X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-0.6 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: from 9front.inri.net (9front.inri.net [168.235.81.73]) by inbox.vuxu.org (Postfix) with ESMTP id 73DDA2B4EB for ; Tue, 11 Jun 2024 16:58:53 +0200 (CEST) Received: from smtp4-g21.free.fr ([212.27.42.4]) by 9front; Tue Jun 11 10:57:39 -0400 2024 Received: from cixi.localnet (unknown [IPv6:2a01:e0a:bc7:f350:cf9c:9fd5:f3b0:3fae]) (Authenticated sender: tnemeth@free.fr) by smtp4-g21.free.fr (Postfix) with ESMTPSA id DD12219F576 for <9front@9front.org>; Tue, 11 Jun 2024 16:57:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=free.fr; s=smtp-20201208; t=1718117856; bh=aFYFgtJmoOQumZepIsN8Cn68X6/YLede6aassiEVPjQ=; h=From:To:Subject:Date:From; b=fcsd3HQbrje+JUvr5zIjVc8p5fgD8wgtZlJSZFsPG3Ti4fWwWsGnmnap44XdnSeQV 3o58Uufa8eWXrANbJKbKjWlHZE0iQ29koBwzEo+iZQpcUnBV7mmzZTAK2mVZhyHGJh /D/Ia0YQaJ3116DU4v86v587dwT54ZrAnXh53KUjpnJ+u+k9hMfBBO5vm+flBIlOTN HxDG3BazGhQg6poq8NG1JGHrWoIR5nZGFuDFgWWuYPjyduRyaqBuZPnC1Q9FgDMOHf PT4LS9J5NvAj4rNQLZsuf4cyProtuMnd39TxYOOYgy3FI0nmsfLbV/ehFK7ewkaB+Z cIkN4CfI6kG7Q== From: Thomas Nemeth To: "9front@9front.org" <9front@9front.org> Date: Tue, 11 Jun 2024 16:57:36 +0200 Message-ID: <1890322.tdWV9SEqCh@cixi> Organization: =?UTF-8?B?ZMOpc29yZ2FuaXPDqWU=?= MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: structured plugin-oriented rails-scale plugin package Subject: [9front] Staying up-to-date Reply-To: 9front@9front.org Precedence: bulk Hi. I've read the FQA and some other documentation a lot and I'm amiss about why my system upgrade script does not work the way I intend it to work. I certainly don't know enough about the specifics and peculiarities of rc. I made a script, named sysupgrade, that does what's in dash1, section 5.2.2: "Building from source". ------8<------8<------8<------8<------8<------8<------8<------ #!/bin/rc sysupdate # create any missing directories needed for the build cd / . /sys/lib/rootstub # build everything cd /sys/src mk install mk clean # build manpage indices cd /sys/man mk ------8<------8<------8<------8<------8<------8<------8<------ But, unfortunately it fails to execute everything so I usually type them one by one... (well, today the compilation fails anyway). Can someone explain or tell me what I did wrong ? Thomas.