- fix race when setting task done (bz 227268).

- Resolves: rhbz#227268
This commit is contained in:
ikent 2007-02-06 01:05:55 +00:00
parent bbb8884912
commit a914a5a66d

View File

@ -4,7 +4,7 @@
Summary: A tool for automatically mounting and unmounting filesystems
Name: autofs
%define version 5.0.1
%define release 0.rc3.13
%define release 0.rc3.15
Version: %{version}
Release: %{release}
Epoch: 1
@ -19,6 +19,7 @@ Patch5: autofs-5.0.1-rc3-correct-offset-mount-busy-check.patch
Patch6: autofs-5.0.1-rc3-consistent-dquote-handling.patch
Patch7: autofs-5.0.1-rc3-trailing-whitespace.patch
Patch8: autofs-5.0.1-rc3-match-export-fqdn.patch
Patch9: autofs-5.0.1-rc3-task-done-race.patch
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: autoconf, hesiod-devel, openldap-devel, bison, flex, libxml2-devel, cyrus-sasl-devel, openssl-devel
Conflicts: kernel < 2.6.17
@ -69,6 +70,7 @@ echo %{version}-%{release} > .version
%patch6 -p1
%patch7 -p1
%patch8 -p1
%patch9 -p1
%build
#CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --libdir=%{_libdir}
@ -125,6 +127,9 @@ exit 0
%{_libdir}/autofs/*
%changelog
* Tue Feb 6 2007 Ian Kent <ikent@redhat.com> - 5.0.1-0.rc3.15
- fix race when setting task done (bz 227268).
* Mon Jan 29 2007 Ian Kent <ikent@redhat.com> - 5.0.1-0.rc3.13
- make double quote handing consistent (at least as much as we can).
- fix handling of trailing white space in wildcard lookup (forward port bz 199720).