diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-06-08 00:44:03 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-08 13:23:04 +0100 |
commit | 869333e10e3dffc776512b32725afe3d74cfe3ee (patch) | |
tree | 08e83d2cb37d7b1159be45aeed9af02777359219 /Ports/mrsh | |
parent | 86d71028df503597b49aa9cb38fd6f55405c0146 (diff) | |
download | serenity-869333e10e3dffc776512b32725afe3d74cfe3ee.zip |
Ports/mrsh: Explicitly disable `readline` support
Previously, `mrsh` automatically enabled support for `readline` if it
was detected as installed. However, linking against `readline` currently
doesn't work, so disable it completely instead.
Diffstat (limited to 'Ports/mrsh')
-rwxr-xr-x | Ports/mrsh/package.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Ports/mrsh/package.sh b/Ports/mrsh/package.sh index a0b7c9dcc9..d23d17ad8a 100755 --- a/Ports/mrsh/package.sh +++ b/Ports/mrsh/package.sh @@ -4,5 +4,8 @@ version=cd3c3a48055ab4085d83f149ff4b4feba40b40cb files="https://github.com/emersion/mrsh/archive/${version}.tar.gz ${port}-${version}.tar.gz d26e3fdee71ef168cf3f8ad2912c148b20aab524048e4ea899d6b83fb299ceab" auth_type=sha256 useconfigure=true +configopts=( + "--without-readline" +) export CFLAGS=-Wno-deprecated-declarations |