- The sort command no longer accepts options of the form "+0". This broke

auto.net, so the option was removed. Fixes bz #172111.
This commit is contained in:
Jeffrey E. Moyer 2005-11-04 00:17:58 +00:00
parent 7805dcb079
commit 5a594f8d33

View File

@ -4,7 +4,7 @@
Summary: A tool for automatically mounting and unmounting filesystems.
Name: autofs
%define version 4.1.4
%define release 11
%define release 12
Version: %{version}
Release: %{release}
Epoch: 1
@ -25,6 +25,7 @@ Patch11: autofs-4.1.4-solaris-hosts-in-auto-master.patch
Patch12: autofs-4.1.4-keylen-length-check.patch
Patch13: autofs-4.1.4-sun-parse-fixes.patch
Patch14: autofs-4.1.4-check-return-of-is-local-addr.patch
Patch15: autofs-4.1.4-fix-sort-opts.patch
Buildroot: /var/tmp/autofs-tmp
BuildPrereq: autoconf, hesiod-devel, openldap-devel, perl
@ -78,6 +79,7 @@ echo %{version}-%{release} > .version
%patch12 -p1
%patch13 -p1
%patch14 -p1
%patch15 -p1
%build
#CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --libdir=%{_libdir}
@ -131,6 +133,10 @@ exit 0
%{_libdir}/autofs/*
%changelog
* Thu Nov 3 2005 Jeff Moyer <jmoyer@redhat.com> - 1:4.1.4-12
- The sort command no longer accepts options of the form "+0". This broke
auto.net, so the option was removed. Fixes bz #172111.
* Wed Oct 26 2005 <jmoyer@redhat.com> - 1:4.1.4-11
- Check the return code of is_local_addr in get_best_mount. (bz #169523)