diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-04-01 10:44:29 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-04-01 10:44:29 -0600 |
commit | 314dd7ba2aa9d0ba5bb9a6ab28b7204dd319e386 (patch) | |
tree | 0102dd2d49fa94c988904c53158cb9d560d85fd8 | |
parent | 3b52ae980c41b420592e3005199041890a56d6dc (diff) | |
parent | 30830bddbfbe9503836bdcb3ed90ec3f945d122d (diff) | |
download | liburing-314dd7ba2aa9d0ba5bb9a6ab28b7204dd319e386.tar.gz liburing-314dd7ba2aa9d0ba5bb9a6ab28b7204dd319e386.tar.bz2 |
Merge tag 'liburing-2022-05-01' of https://github.com/ammarfaizi2/liburing
Pull a configure script fix from Ammar Faizi:
- Allow the configure script to fail with a non-zero exit code.
Link: https://github.com/axboe/liburing/pull/553
Link: https://github.com/axboe/liburing/pull/554
* tag 'liburing-2022-05-01' of https://github.com/ammarfaizi2/liburing:
configure: Allow the configure script to fail with a non-zero exit code
-rwxr-xr-x | configure | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,10 +1,12 @@ #!/bin/sh +set -e + cc=${CC:-gcc} cxx=${CXX:-g++} for opt do - optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)') + optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)' || true) case "$opt" in --help|-h) show_help=yes ;; |