Received: from out0.migadu.com (out0.migadu.com [94.23.1.103]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 322CA7810B1 for ; Mon, 27 Dec 2021 21:15:30 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ulthar.cat; s=key1; t=1640639383; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=lwWPQjpo2mB6pdFaXUll7cCdh4fii3E7NsizE5jCkxY=; b=Hl32B5SuuArETDE9fXx0xpDcB+zaXLn4qx7T8gJRsSJnnAB8YRfohyDbn6yTBrK/1nmaew ATYnH8p0LFa5XSyZg9D5xLbagD2mJBqD+VRyihVyLPnJMWWm+wg9XHr89OZ+7QHhUBdtOO y9IPxpkKGMYDfPOHiSx09nPz6VafKg8= From: Elaina Thompson To: alpine-aports@lists.alpinelinux.org Cc: Elaina Thompson Subject: [PATCH] testing/9base: fix troff directory Date: Mon, 27 Dec 2021 13:09:34 -0800 Message-Id: <20211227210933.19791-1-felinae@ulthar.cat> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: ulthar.cat as is, the troff directory gets placed in the incorrect place due to mkdir already creating the directory. this should fix that behavior. Ps: first patch (anywhere) apologies if anything is wrong or sloppy --- testing/9base/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/9base/APKBUILD b/testing/9base/APKBUILD index 9d77b93e..3e713d00 100644 --- a/testing/9base/APKBUILD +++ b/testing/9base/APKBUILD @@ -47,7 +47,7 @@ troff() { cd "$pkgdir" mkdir -p "$subpkgdir/usr/lib/9base/bin" mv "$pkgdir/usr/lib/9base/bin/troff" "$subpkgdir/usr/lib/9base/bin/troff" - mkdir -p "$subpkgdir/usr/lib/9base/lib/troff" + mkdir -p "$subpkgdir/usr/lib/9base/lib" mv "$pkgdir/usr/lib/9base/lib/troff" "$subpkgdir/usr/lib/9base/lib/troff" } -- 2.34.1