Skip to content
Snippets Groups Projects
Commit a997ad73 authored by Niels Möller's avatar Niels Möller
Browse files

Replace one more conftest use of exit with return.

parent a3d1e297
Branches
Tags
No related merge requests found
...@@ -31,7 +31,7 @@ AC_CACHE_VAL(lsh_cv_sys_ccpic,[ ...@@ -31,7 +31,7 @@ AC_CACHE_VAL(lsh_cv_sys_ccpic,[
fi fi
OLD_CFLAGS="$CFLAGS" OLD_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $CCPIC" CFLAGS="$CFLAGS $CCPIC"
AC_TRY_COMPILE([], [exit(0);], AC_TRY_COMPILE([], [return 0;],
lsh_cv_sys_ccpic="$CCPIC", lsh_cv_sys_ccpic='') lsh_cv_sys_ccpic="$CCPIC", lsh_cv_sys_ccpic='')
CFLAGS="$OLD_CFLAGS" CFLAGS="$OLD_CFLAGS"
]) ])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment