diff options
author | Cem Keylan <cem@ckyln.com> | 2020-01-29 20:04:56 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-01-29 20:04:56 +0300 |
commit | 65e4bd520e062177a59b5bf3d3bdf85d6d032cab (patch) | |
tree | ddec17e766ef885079d0cb1d0efdb370bfb66335 /core/libelf | |
parent | 6101f9326d17daefe69f1d3a5e3bad7ce5b792a5 (diff) | |
download | repository-65e4bd520e062177a59b5bf3d3bdf85d6d032cab.tar.gz |
libelf: remove -i from sed on build
Diffstat (limited to 'core/libelf')
-rwxr-xr-x | core/libelf/build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/libelf/build b/core/libelf/build index a7a7f497..01c1dab2 100755 --- a/core/libelf/build +++ b/core/libelf/build @@ -1,6 +1,6 @@ #!/bin/sh -e -sed -i 's/-I/-isystem /g' libelf.pc.in +sed 's/-I/-isystem /g' libelf.pc.in > libelf.pc.in.bak && mv libelf.pc.in.bak libelf.pc.in ./configure \ --prefix=/usr \ |