diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-05-25 17:48:01 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-05-25 22:54:04 +0100 |
commit | 2d3724303a709fd8622846686e507e13fff9b5fe (patch) | |
tree | 25655f67d80c51e34c47b1a1d66e058510798892 /Ports/glu/package.sh | |
parent | 40b9318695b13b7cfd2963e845588007abb129d1 (diff) | |
download | serenity-2d3724303a709fd8622846686e507e13fff9b5fe.zip |
Ports: Replace the manual `glu` `config.sub` patch with our download
Diffstat (limited to 'Ports/glu/package.sh')
-rwxr-xr-x | Ports/glu/package.sh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Ports/glu/package.sh b/Ports/glu/package.sh index 60da9544f6..18b9d9389c 100755 --- a/Ports/glu/package.sh +++ b/Ports/glu/package.sh @@ -5,11 +5,7 @@ version="9.0.2" files="https://archive.mesa3d.org/glu/glu-${version}.tar.gz glu-${version}.tar.gz 24effdfb952453cc00e275e1c82ca9787506aba0282145fff054498e60e19a65" auth_type=sha256 depends=("pkgconf") +use_fresh_config_sub=true export GL_CFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/include/LibGL" export GL_LIBS="-lgl" - -pre_configure() { - # Manual config.sub patch - run sed -i 's/haiku/serenity/' config.sub -} |