diff options
author | Cem Keylan <cem@ckyln.com> | 2020-01-29 20:08:27 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-01-29 20:08:27 +0300 |
commit | 1e2b69791446ccaaebf648a52d7bf52e759684f0 (patch) | |
tree | 53fdd51aa7426739a021496c3429df4a11c63b39 | |
parent | 9f870cb6566cc7055a926dd6387795055783635e (diff) | |
download | repository-1e2b69791446ccaaebf648a52d7bf52e759684f0.tar.gz |
sqlite: remove -i from sed on build
-rwxr-xr-x | extra/sqlite/build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extra/sqlite/build b/extra/sqlite/build index 08c1fd23..4f5b88ec 100755 --- a/extra/sqlite/build +++ b/extra/sqlite/build @@ -2,7 +2,9 @@ export CPPFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1" -sed -i 's/ -ltinfo//g' configure +sed 's/ -ltinfo//g' configure > configure.bak +mv configure.bak configure +chmod +x configure ./configure \ --prefix=/usr \ |