diff options
author | Cem Keylan <cem@ckyln.com> | 2020-01-29 20:09:15 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-01-29 20:09:15 +0300 |
commit | df05b514d272a78952640e01cadc8ca7fc83b71d (patch) | |
tree | a1c60bd490d706740aef5accfe8e21cef025f017 /xorg | |
parent | 078486ec798bfdffd3d9fdb9cfb6228c5d6147e4 (diff) | |
download | repository-df05b514d272a78952640e01cadc8ca7fc83b71d.tar.gz |
libxcb: remove -i from sed on build
Diffstat (limited to 'xorg')
-rwxr-xr-x | xorg/libxcb/build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xorg/libxcb/build b/xorg/libxcb/build index 285ad906..cbf38ed8 100755 --- a/xorg/libxcb/build +++ b/xorg/libxcb/build @@ -1,6 +1,8 @@ #!/bin/sh -e -sed -i 's/pthread-stubs //' configure +sed 's/pthread-stubs //' configure > configure.bak +mv configure.bak configure +chmod +x configure ./configure \ --prefix=/usr |