diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2022-01-17 19:46:38 -0800 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-01-18 08:50:40 +0100 |
commit | 3fdc2d8dcf4ee3ce40c6cf40c65e65d73b2cd06d (patch) | |
tree | 4f74e8833efcf67259dfea3d4cfbcbb90a6e7936 /Ports/readline/package.sh | |
parent | 4bf88bb7325f3bc50371f1fb65c93a0ff23b1e99 (diff) | |
download | serenity-3fdc2d8dcf4ee3ce40c6cf40c65e65d73b2cd06d.zip |
Ports/readline: Fix config.sub refresh for the readline port
The new `use_fresh_config_sub` option puts the config.sub in the root of
the tree, but `readline` puts it in the `support/` folder. So we need to
tell the ports infrastructure to place the file in that folder.
Diffstat (limited to 'Ports/readline/package.sh')
-rwxr-xr-x | Ports/readline/package.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ports/readline/package.sh b/Ports/readline/package.sh index fc9f0e8a7d..4aa9625110 100755 --- a/Ports/readline/package.sh +++ b/Ports/readline/package.sh @@ -3,6 +3,7 @@ port=readline version=8.1 useconfigure=true +config_sub_path=support/config.sub use_fresh_config_sub=true files="https://ftpmirror.gnu.org/gnu/readline/readline-${version}.tar.gz readline-${version}.tar.gz f8ceb4ee131e3232226a17f51b164afc46cd0b9e6cef344be87c65962cb82b02" auth_type=sha256 |