configure: Fix wrong preprocessor statement

#abort is not a preprocessor statement. It aborts, but the preprocessor
statement #error is more common to abort a compilation.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
Stefan Weil 2012-04-06 21:33:20 +02:00 committed by Stefan Hajnoczi
parent 8fb0315165
commit e172fe1177
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -2624,7 +2624,7 @@ int main(void) {
#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
return fdatasync(0);
#else
#abort Not supported
#error Not supported
#endif
}
EOF