diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2021-03-13 22:37:22 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-14 11:30:38 +0100 |
commit | 6cf8e3c980aa048183264b155590599b9ac77f0d (patch) | |
tree | 7dae75f187670a5be4422abda2274e9be3a2494b | |
parent | 430e7fb18104aeacbc69c452e36966bcce390760 (diff) | |
download | serenity-6cf8e3c980aa048183264b155590599b9ac77f0d.zip |
Ports: Make gnuplot build fail later
-rwxr-xr-x | Ports/gnuplot/package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/gnuplot/package.sh b/Ports/gnuplot/package.sh index 17a7eb4a71..9b60175c19 100755 --- a/Ports/gnuplot/package.sh +++ b/Ports/gnuplot/package.sh @@ -4,7 +4,7 @@ version=5.2.8 useconfigure=true # Note: gnuplot's source code is hosted on SourceForge, but using the GitHub mirror makes downloading a versioned .tar.gz easier. files="https://github.com/gnuplot/gnuplot/archive/${version}.tar.gz gnuplot-${version}.tar.gz" -configopts="--prefix=${SERENITY_BUILD_DIR}/Root/usr/local --with-readline=builtin" +configopts="--prefix=${SERENITY_BUILD_DIR}/Root/usr/local --with-readline=builtin --without-latex" pre_configure() { run ./prepare |