diff options
author | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-08-13 09:48:56 +0200 |
---|---|---|
committer | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-08-13 09:48:56 +0200 |
commit | 8aeb0c33dd7c0964731e2bd9ce969a65c246ec70 (patch) | |
tree | 857a2847980e86ee2c9b04790c7158f879f7ae89 | |
parent | 94f8f21a9436087f19a64f14cf4c855c1e43c337 (diff) | |
download | librpm-tizen-8aeb0c33dd7c0964731e2bd9ce969a65c246ec70.tar.gz librpm-tizen-8aeb0c33dd7c0964731e2bd9ce969a65c246ec70.tar.bz2 librpm-tizen-8aeb0c33dd7c0964731e2bd9ce969a65c246ec70.zip |
Fix bugs in previous commit.
-rw-r--r-- | configure.ac | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 44f5b5f3e..936e1817e 100644 --- a/configure.ac +++ b/configure.ac @@ -844,11 +844,10 @@ yes) ;; auto) AC_CHECK_HEADER([selinux/selinux.h],[ - AC_CHECK_LIB(selinux,[is_selinux_enabled],[with_selinux=yes],[ - [with_selinux=no]) - ]) + AC_CHECK_LIB(selinux,[is_selinux_enabled],[with_selinux=yes], + [with_selinux=no]) ],[ - [with_selinux=no]) + with_selinux=no ]) ;; *) with_selinux=no |