From 7d428753ab679d6d9a6eedd5c28031b475ceceb3 Mon Sep 17 00:00:00 2001 From: Yukai Chou Date: Sun, 26 Feb 2023 07:22:36 +0800 Subject: [PATCH] Fully drop `stdconfig` --- CHANGELOG.md | 1 + l3build.lua | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17065815..41051c9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ this project uses date-based 'snapshot' version identifiers. - Restore epoch settings for `dvitopdf()` - Use plural form of variable `ps2pdfopts` consistently in code and doc, and retain compatibility with singular form `ps2pdfopt` (issue #275) +- Remove the last trace of dropped variable `stdconfig` ## [2023-02-20] diff --git a/l3build.lua b/l3build.lua index c66cd9a0..bbb11125 100644 --- a/l3build.lua +++ b/l3build.lua @@ -123,9 +123,9 @@ epoch = normalise_epoch(epoch) -- -- When we have specific files to deal with, only use explicit configs --- (or just the std one) +-- (or just the default one) if options["names"] then - checkconfigs = options["config"] or {stdconfig} + checkconfigs = options["config"] or {"build"} else checkconfigs = options["config"] or checkconfigs end