diff options
author | Bruce Rogers <brogers@suse.com> | 2012-08-20 12:45:08 -0600 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-10-27 14:21:04 +0000 |
commit | 9bca81624ef9299b9a06013fd29cd6899079aab4 (patch) | |
tree | 3afc09c2ad05326f0beed49fb08d5f3a3d27c2e9 /configure | |
parent | c1556a812a16023894e53c7b2215929741a5bf17 (diff) |
configure: avoid compiler warning in pipe2 detection
When building qemu-kvm for openSUSE:Factory, I am getting a
warning in the pipe2 detection performed by configure, which
prevents using --enable-werror.
Change detection code to use return value of pipe2.
Signed-off-by: Bruce Rogers <brogers@suse.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2399,8 +2399,7 @@ cat > $TMPC << EOF int main(void) { int pipefd[2]; - pipe2(pipefd, O_CLOEXEC); - return 0; + return pipe2(pipefd, O_CLOEXEC); } EOF if compile_prog "" "" ; then |