- fix tokenizer to distinguish between global option and dn string.

- fix incorrect return from spawn.
This commit is contained in:
ikent 2006-11-12 11:11:48 +00:00
parent 9cbc2026ac
commit b538b5506a

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.rc2.21
%define release 0.rc2.23
Version: %{version}
Release: %{release}
Epoch: 1
@ -45,6 +45,8 @@ Patch30: autofs-5.0.1-rc2-recursive-bind-mount.patch
Patch31: autofs-5.0.1-rc2-require-kproto-v5.patch
Patch32: autofs-5.0.1-rc2-fix-manual-umount-regression.patch
Patch33: autofs-5.0.1-rc2-recursive-bind-mount-use-access-not-opendir.patch
Patch34: autofs-5.0.1-rc2-fix-catch-global-options.patch
Patch35: autofs-5.0.1-rc2-fix-incorrect-return-from-spawn.patch
Buildroot: /var/tmp/autofs-tmp
BuildRequires: autoconf, hesiod-devel, openldap-devel, bison, flex, libxml2-devel, cyrus-sasl-devel, openssl-devel
Prereq: chkconfig
@ -118,6 +120,8 @@ echo %{version}-%{release} > .version
%patch31 -p1
%patch32 -p1
%patch33 -p1
%patch34 -p1
%patch35 -p1
%build
#CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --libdir=%{_libdir}
@ -174,6 +178,10 @@ exit 0
%{_libdir}/autofs/*
%changelog
* Sun Nov 12 2006 Ian Kent <ikent@redhat.com> - 5.0.1-0.rc2.23
- fix tokenizer to distinguish between global option and dn string.
- fix incorrect return from spawn.
* Wed Nov 8 2006 Ian Kent <ikent@redhat.com> - 5.0.1-0.rc2.21
- mitigate manual umount of automounts where possible.
- fix multiply recursive bind mounts.