diff options
author | Cem Keylan <cem@ckyln.com> | 2020-05-23 22:52:53 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-05-23 22:52:53 +0300 |
commit | ed7e06fd1f8c8bea2b2c983ccc994310c82bd0a9 (patch) | |
tree | 440bfc11fa3522e1e3a89b44518d5f0e833d10e4 /extra/sqlite | |
parent | 911c0ccb369d8e37ad7e8c8c2e7596aa361459f4 (diff) | |
download | repository-ed7e06fd1f8c8bea2b2c983ccc994310c82bd0a9.tar.gz |
sqlite: POSIX sed
Diffstat (limited to 'extra/sqlite')
-rwxr-xr-x | extra/sqlite/build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extra/sqlite/build b/extra/sqlite/build index 08c1fd23..b105764b 100755 --- a/extra/sqlite/build +++ b/extra/sqlite/build @@ -2,7 +2,8 @@ export CPPFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1" -sed -i 's/ -ltinfo//g' configure +sed 's/ -ltinfo//g' configure > _ +cat _ > configure; rm -f _ ./configure \ --prefix=/usr \ |