diff options
author | Cem Keylan <cem@ckyln.com> | 2020-01-29 20:09:30 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-01-29 20:09:30 +0300 |
commit | 8076c7b99d0aff67c9ffe8d6d10c8bd4308f879e (patch) | |
tree | fd59bd78aecf9644c7191cc7906561e333e3a089 /xorg | |
parent | df05b514d272a78952640e01cadc8ca7fc83b71d (diff) | |
download | repository-8076c7b99d0aff67c9ffe8d6d10c8bd4308f879e.tar.gz |
mesa: remove -i from sed on build
Diffstat (limited to 'xorg')
-rwxr-xr-x | xorg/mesa/build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xorg/mesa/build b/xorg/mesa/build index 9a7f79bd..e2cecdcf 100755 --- a/xorg/mesa/build +++ b/xorg/mesa/build @@ -6,7 +6,7 @@ export CFLAGS="-DGLX_X86_READONLY_TEXT $CFLAGS" # Fix issues with musl and firefox. # https://bugs.freedesktop.org/show_bug.cgi?id=35268 # https://github.com/mesa3d/mesa/commit/9f37c9903b87f86a533bfaffa72f0ecb285b02b2 -sed -i "/pre_args += '-DUSE_ELF_TLS'/d" meson.build +sed "/pre_args += '-DUSE_ELF_TLS'/d" meson.build > meson.build.bak && mv meson.build.bak meson.build meson \ --prefix=/usr \ |