4a59de
Summary: The GNU versions of find utilities (find and xargs)
4a59de
Name: findutils
4a59de
Version: 4.5.11
4a59de
Release: 4%{?dist}
4a59de
Epoch: 1
4a59de
License: GPLv3+
4a59de
Group: Applications/File
4a59de
URL: http://www.gnu.org/software/findutils/
4a59de
Source0: ftp://alpha.gnu.org/gnu/findutils/%{name}-%{version}.tar.gz
4a59de
4a59de
# do not build locate
4a59de
Patch1: findutils-4.4.0-no-locate.patch
4a59de
4a59de
# learn find to recognize autofs file system by reading /proc/mounts
4a59de
# as autofs mount points are not listed in /etc/mtab
4a59de
Patch2: findutils-4.4.2-autofs.patch
4a59de
4a59de
# add a new option -xautofs to find to not descend into directories on autofs
4a59de
# file systems
4a59de
Patch3: findutils-4.4.2-xautofs.patch
4a59de
4a59de
# eliminate compile-time warnings
4a59de
Patch4: findutils-4.5.7-warnings.patch
4a59de
4a59de
# eliminate failure of gnulib tests on little-endian PowerPC (#1083145)
4a59de
Patch5: findutils-4.5.11-ppc-gnulib-tests.patch
4a59de
4a59de
Requires(post): /sbin/install-info
4a59de
Requires(preun): /sbin/install-info
4a59de
Conflicts: filesystem < 3
4a59de
Provides: /bin/find
4a59de
Provides: bundled(gnulib)
4a59de
4a59de
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
4a59de
BuildRequires: automake
4a59de
BuildRequires: dejagnu
4a59de
BuildRequires: gettext-devel
4a59de
BuildRequires: libselinux-devel
4a59de
BuildRequires: texinfo
4a59de
4a59de
%description
4a59de
The findutils package contains programs which will help you locate
4a59de
files on your system.  The find utility searches through a hierarchy
4a59de
of directories looking for files which match a certain set of criteria
4a59de
(such as a file name pattern).  The xargs utility builds and executes
4a59de
command lines from standard input arguments (usually lists of file
4a59de
names generated by the find command).
4a59de
4a59de
You should install findutils because it includes tools that are very
4a59de
useful for finding things on your system.
4a59de
4a59de
%prep
4a59de
%setup -q
4a59de
rm -rf locate
4a59de
%patch1 -p1
4a59de
%patch2 -p1
4a59de
%patch3 -p1
4a59de
%patch4 -p1
4a59de
%patch5 -p1
4a59de
4a59de
# needed because of findutils-4.4.0-no-locate.patch
4a59de
autoreconf -iv
4a59de
4a59de
%build
4a59de
%configure
4a59de
4a59de
# uncomment to turn off optimizations
4a59de
#find -name Makefile | xargs sed -i 's/-O2/-O0/'
4a59de
4a59de
make %{?_smp_mflags}
4a59de
4a59de
%check
4a59de
make check
4a59de
4a59de
%install
4a59de
make install DESTDIR=$RPM_BUILD_ROOT
4a59de
4a59de
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
4a59de
4a59de
%find_lang %{name}
4a59de
4a59de
%post
4a59de
if [ -f %{_infodir}/find.info.gz ]; then
4a59de
  /sbin/install-info %{_infodir}/find.info.gz %{_infodir}/dir || :
4a59de
fi
4a59de
4a59de
%preun
4a59de
if [ $1 = 0 ]; then
4a59de
  if [ -f %{_infodir}/find.info.gz ]; then
4a59de
    /sbin/install-info --delete %{_infodir}/find.info.gz %{_infodir}/dir || :
4a59de
  fi
4a59de
fi
4a59de
4a59de
%files -f %{name}.lang
4a59de
%doc AUTHORS COPYING NEWS README THANKS TODO ChangeLog
4a59de
%{_bindir}/find
4a59de
%{_bindir}/oldfind
4a59de
%{_bindir}/xargs
4a59de
%{_mandir}/man1/find.1*
4a59de
%{_mandir}/man1/oldfind.1*
4a59de
%{_mandir}/man1/xargs.1*
4a59de
%{_infodir}/find.info*
4a59de
%{_infodir}/find-maint.info.gz
4a59de
4a59de
%changelog
4a59de
* Fri Aug 01 2014 Kamil Dudka <kdudka@redhat.com> - 1:4.5.11-4
4a59de
- eliminate failure of gnulib tests on little-endian PowerPC (#1125504)
4a59de
4a59de
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1:4.5.11-3
4a59de
- Mass rebuild 2014-01-24
4a59de
4a59de
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:4.5.11-2
4a59de
- Mass rebuild 2013-12-27
4a59de
4a59de
* Sun Feb 03 2013 Kamil Dudka <kdudka@redhat.com> - 1:4.5.11-1
4a59de
- new upstream release
4a59de
4a59de
* Tue Aug 28 2012 Kamil Dudka <kdudka@redhat.com> - 1:4.5.10-7
4a59de
- fix specfile issues reported by the fedora-review script
4a59de
- do not use the AM_C_PROTOTYPES macro (removed in Automake 1.12)
4a59de
- do not require gets() to be declared
4a59de
4a59de
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.5.10-6
4a59de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
4a59de
4a59de
* Wed May 16 2012 Kamil Dudka <kdudka@redhat.com> - 1:4.5.10-5
4a59de
- add virtual provides for bundled(gnulib) copylib (#821753)
4a59de
4a59de
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 1:4.5.10-4
4a59de
- add filesystem guard
4a59de
4a59de
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 1:4.5.10-3
4a59de
- install everything in /usr
4a59de
  https://fedoraproject.org/wiki/Features/UsrMove
4a59de
4a59de
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.5.10-2
4a59de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
4a59de
4a59de
* Wed May 11 2011 Kamil Dudka <kdudka@redhat.com> - 1:4.5.10-1
4a59de
- new upstream release
4a59de
4a59de
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.5.9-3
4a59de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
4a59de
4a59de
* Mon May 24 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.9-2
4a59de
- fix some bugs in handling of -execdir (Savannah bug #29949)
4a59de
4a59de
* Wed May 05 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.9-1
4a59de
- new upstream release, dropped applied patches
4a59de
4a59de
* Tue Apr 06 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.7-4
4a59de
- avoid assertion failure due to access permissions (#579476)
4a59de
4a59de
* Sun Apr 04 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.7-3
4a59de
- upstream bugfix http://savannah.gnu.org/bugs/?29435
4a59de
4a59de
* Sat Apr 03 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.7-2
4a59de
- avoid assertion failure on non-recognized O_CLOEXEC
4a59de
4a59de
* Sat Apr 03 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.7-1
4a59de
- new upstream release, dropped applied patches
4a59de
- eliminated compile-time warnings
4a59de
4a59de
* Thu Nov 26 2009 Kamil Dudka <kdudka@redhat.com> - 1:4.4.2-6
4a59de
- update SELinux patch to the latest upstream (gnulib based) version
4a59de
4a59de
* Wed Nov 18 2009 Kamil Dudka <kdudka@redhat.com> - 1:4.4.2-5
4a59de
- do not fail silently on a remount during traverse (#538536)
4a59de
4a59de
* Tue Oct 20 2009 Kamil Dudka <kdudka@redhat.com> - 1:4.4.2-4
4a59de
- make it possible to recognize an autofs filesystem by find
4a59de
- add a new find's option -xautofs to not descend directories on autofs
4a59de
  filesystems
4a59de
4a59de
* Mon Sep 14 2009 Kamil Dudka <kdudka@redhat.com> - 1:4.4.2-3
4a59de
- do process install-info only without --excludedocs(#515914)
4a59de
4a59de
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.4.2-2
4a59de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
4a59de
4a59de
* Wed Jul  1 2009 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.4.2-1
4a59de
- Update to findutils-4.4.2
4a59de
4a59de
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.4.0-2
4a59de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
4a59de
4a59de
* Wed Apr 30 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.4.0-1
4a59de
- Update to findutils-4.4.0
4a59de
  Resolves: #437733
4a59de
4a59de
* Mon Apr 14 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.33-3
4a59de
- Move find to /bin
4a59de
  Resolves: #438183
4a59de
4a59de
* Fri Mar 28 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.33-2
4a59de
- Fix xargs ARG_MAX assert
4a59de
  Resolves: #439168
4a59de
4a59de
* Fri Feb 15 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.33-1
4a59de
- Update to findutils-4.2.33
4a59de
- Fix License
4a59de
4a59de
* Wed Feb 13 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.32-1
4a59de
- Update to findutils-4.2.32
4a59de
4a59de
* Mon Feb 11 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.31-4
4a59de
- Rebuild
4a59de
4a59de
* Fri Jan 18 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.31-3
4a59de
- Rebuild
4a59de
4a59de
* Thu Aug 23 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.31-2
4a59de
- fix license
4a59de
- rebuild
4a59de
4a59de
* Tue Jun 12 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.31-1
4a59de
- Update to findutils-4.2.31
4a59de
  Resolves: #243732
4a59de
4a59de
* Fri Jan  5 2007 Miloslav Trmac <mitr@redhat.com> - 1:4.2.29-2
4a59de
- Ignore install-info errors in scriptlets
4a59de
4a59de
* Sun Nov 26 2006 Miloslav Trmac <mitr@redhat.com> - 1:4.2.29-1
4a59de
- Update to findutils-4.2.29
4a59de
- Fix some rpmlint warnings
4a59de
4a59de
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:4.2.27-4.1
4a59de
- rebuild
4a59de
4a59de
* Sun Feb 19 2006 Miloslav Trmac <mitr@redhat.com> - 1:4.2.27-4
4a59de
- Report the correct directory when hard link count is inconsistent (#182001)
4a59de
4a59de
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:4.2.27-3.2
4a59de
- bump again for double-long bug on ppc(64)
4a59de
4a59de
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1:4.2.27-3.1
4a59de
- rebuilt for new gcc4.1 snapshot and glibc changes
4a59de
4a59de
* Mon Jan 30 2006 Miloslav Trmac <mitr@redhat.com> - 1:4.2.27-3
4a59de
- Updated SELinux patch, --context is no longer valid (use -context)
4a59de
4a59de
* Thu Jan 12 2006 Miloslav Trmac <mitr@redhat.com> - 1:4.2.27-2
4a59de
- Don't use uninitialized memory in -printf %%Z (#174485)
4a59de
- Ship more documentation files
4a59de
- Clean up the spec file a bit
4a59de
4a59de
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
4a59de
- rebuilt
4a59de
4a59de
* Wed Dec  7 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.27-1
4a59de
- 4.2.27.
4a59de
- No longer need arg_max patch.
4a59de
4a59de
* Mon Nov 21 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.26-1
4a59de
- One further arg_max fix for PPC.
4a59de
- Applied arg_max patch from upstream to fix test suite failures.
4a59de
- 4.2.26 (fixes bug #173817).
4a59de
4a59de
* Tue Oct 11 2005 Dan Walsh <dwalsh@redhat.com> 1:4.2.25-3
4a59de
- Fix selinux patch
4a59de
4a59de
* Mon Sep  5 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.25-2
4a59de
- 4.2.25.
4a59de
4a59de
* Mon Jun 20 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.23-1
4a59de
- 4.2.23.
4a59de
4a59de
* Thu Mar 17 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.20-1
4a59de
- 4.2.20.
4a59de
4a59de
* Mon Mar 14 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.18-3
4a59de
- Applied patch from Robert Scheck to fix compilation with GCC 4 (bug #151031).
4a59de
4a59de
* Wed Mar  2 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.18-2
4a59de
- Rebuild for new GCC.
4a59de
4a59de
* Mon Feb 21 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.18-1
4a59de
- 4.2.18.
4a59de
4a59de
* Mon Feb 14 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.15-2
4a59de
- Added nofollow patch from upstream.
4a59de
4a59de
* Mon Jan 31 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.15-1
4a59de
- 4.2.15.  Lots of patches removed due to upstream merge.
4a59de
4a59de
* Tue Jan 4 2005 Dan Walsh <dwalsh@redhat.com> 1:4.1.20-8
4a59de
- Change --context to use fnmatch instead of strcmp
4a59de
4a59de
* Tue Dec  7 2004 Tim Waugh <twaugh@redhat.com>
4a59de
- Removed "G" and "M" size qualifiers from man page, since support for
4a59de
  those is not in the stable branch (bug #141987).
4a59de
4a59de
* Tue Oct 19 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-7
4a59de
- Better xargs ARG_SIZE handling (bug #135129).
4a59de
4a59de
* Fri Oct 15 2004 Tim Waugh <twaugh@redhat.com>
4a59de
- Fixed d_type patch for underquoted m4 macro.
4a59de
4a59de
* Fri Oct  8 2004 Tim Waugh <twaugh@redhat.com>
4a59de
- Use upstream patch for find -size man page fix.
4a59de
4a59de
* Wed Oct  6 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-6
4a59de
- Fixed bug #126352.
4a59de
4a59de
* Tue Oct  5 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-5
4a59de
- Build requires gettext-devel, texinfo (bug #134692).
4a59de
4a59de
* Thu Sep 30 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-4
4a59de
- Set re->translate before re_compile_pattern (bug #134190).
4a59de
4a59de
* Sun Aug  1 2004 Alan Cox <alan@redhat.com> 1:4.1.20-3
4a59de
- Fix build with current auto* tools (Steve Grubb)
4a59de
4a59de
* Tue Jul  6 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-2
4a59de
- Fix -iregex (bug #127297).
4a59de
4a59de
* Fri Jun 25 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-1
4a59de
- Clarify find man page (bug #126098).
4a59de
- Apply changes by Robert Scheck <redhat@linuxnetz.de> (bug #126352):
4a59de
  - Upgrade to 4.1.20 and some specfile cleanup
4a59de
4a59de
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
4a59de
- rebuilt
4a59de
4a59de
* Thu May 20 2004 Tim Waugh <twaugh@redhat.com> 4.1.7-26
4a59de
- Fixed build requirements (bug #123746).
4a59de
4a59de
* Sun Mar 14 2004 Tim Waugh <twaugh@redhat.com> 4.1.7-25
4a59de
- Apply Jakub Jelinek's patch for xargs -E/-I/-L options.
4a59de
4a59de
* Thu Mar 11 2004 Tim Waugh <twaugh@redhat.com> 4.1.7-24
4a59de
- Apply selinux patch last so that it can be turned off (bug #118025).
4a59de
4a59de
* Tue Mar  9 2004 Tim Waugh <twaugh@redhat.com>
4a59de
- Jakub Jelinek's d_type patch improvement.
4a59de
4a59de
* Sun Mar  7 2004 Tim Waugh <twaugh@redhat.com> 4.1.7-23
4a59de
- Run 'make check'.
4a59de
- Apply Ulrich Drepper's improvement on the d_type patch.
4a59de
4a59de
* Fri Mar  5 2004 Tim Waugh <twaugh@redhat.com> 4.1.7-22
4a59de
- Apply Jakub Jelinek's d_type patch for improved efficiency with
4a59de
  many common expressions.
4a59de
4a59de
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
4a59de
- rebuilt
4a59de
4a59de
* Tue Jan 27 2004 Dan Walsh <dwalsh@redhat.com> 4.1.7-20
4a59de
- fix call to is_selinux_enabled
4a59de
4a59de
* Thu Oct 30 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-19
4a59de
- Turn off SELinux
4a59de
4a59de
* Thu Oct 30 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-18.sel
4a59de
- Turn on selinux
4a59de
4a59de
* Sat Oct 25 2003 Tim Waugh <twaugh@redhat.com> 4.1.7-17
4a59de
- Rebuilt.
4a59de
4a59de
* Fri Oct 10 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-16
4a59de
- Turn off selinux
4a59de
4a59de
* Fri Oct 10 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-15.sel
4a59de
- Turn on selinux
4a59de
4a59de
* Fri Sep 5 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-15
4a59de
- Turn off selinux
4a59de
4a59de
* Thu Aug 28 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-14.sel
4a59de
- Turn on selinux
4a59de
4a59de
* Fri Jul 18 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-13
4a59de
- Add SELinux patch
4a59de
4a59de
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
4a59de
- rebuilt
4a59de
4a59de
* Wed Apr 23 2003 Elliot Lee <sopwith@redhat.com> 4.1.7-11
4a59de
- Remove config.{sub,guess} to make ppc64 work
4a59de
4a59de
* Mon Mar 17 2003 Tim Waugh <twaugh@redhat.com> 4.1.7-10
4a59de
- Make 'xargs -i -n1' behave as expected (bug #86191).
4a59de
4a59de
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 4.1.7-9
4a59de
- rebuilt
4a59de
4a59de
* Tue Oct 22 2002 Tim Waugh <twaugh@redhat.com> 4.1.7-8
4a59de
- Ship translations.
4a59de
- Don't install files not packaged.
4a59de
4a59de
* Wed Jul  3 2002 Tim Waugh <twaugh@redhat.com> 4.1.7-7
4a59de
- Fix usage message (bug #67828).
4a59de
4a59de
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 4.1.7-6
4a59de
- automated rebuild
4a59de
4a59de
* Thu May 23 2002 Tim Powers <timp@redhat.com> 4.1.7-5
4a59de
- automated rebuild
4a59de
4a59de
* Tue Feb 26 2002 Tim Waugh <twaugh@redhat.co,> 4.1.7-4
4a59de
- Rebuild in new environment.
4a59de
4a59de
* Tue Feb 12 2002 Tim Waugh <twaugh@redhat.com> 4.1.7-3
4a59de
- s/Copyright/License/.
4a59de
- Fix documentation (bug #53857).
4a59de
4a59de
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
4a59de
- automated rebuild
4a59de
4a59de
* Sun Jun 03 2001 Florian La Roche <Florian.LaRoche@redhat.de>
4a59de
- update to 4.1.7, no additional patch needed anymore
4a59de
4a59de
* Thu Feb  8 2001 Preston Brown <pbrown@redhat.com>
4a59de
- remove extraneous linking to librt/libpthreads.
4a59de
4a59de
* Tue Oct 17 2000 Florian La Roche <Florian.LaRoche@redhat.de>
4a59de
- update to 4.1.6
4a59de
4a59de
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
4a59de
- automatic rebuild
4a59de
4a59de
* Wed Jun 28 2000 Preston Brown <pbrown@redhat.com>
4a59de
- revert to 4.1.5 ( :) ) on the advice of HJ Lu
4a59de
- patch to fix finding w/ -perm flag
4a59de
4a59de
* Tue Jun 27 2000 Preston Brown <pbrown@redhat.com>
4a59de
- revert to 4.1.4
4a59de
- reapply numblks patch
4a59de
- generate new nolocate patch, we don't ship it.
4a59de
4a59de
* Mon Jun 12 2000 Preston Brown <pbrown@redhat.com>
4a59de
- 4.1.5, FHS paths
4a59de
- remove mktemp,getshort patches (don't ship locate)
4a59de
- alpha, numblks patch no longer needed
4a59de
4a59de
* Mon Apr  3 2000 Bernhard Rosenkraenzer <bero@redhat.com>
4a59de
- 4.1.4
4a59de
- remove some obsolete patches, adapt others
4a59de
- fix build on alpha
4a59de
4a59de
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
4a59de
- fix summary
4a59de
- ma  pages are compressed
4a59de
4a59de
* Wed Jan 12 2000 Preston Brown <pbrown@redhat.com>
4a59de
- new description.
4a59de
4a59de
* Fri Aug 27 1999 Preston Brown <pbrown@redhat.com>
4a59de
- fixed block count bug (# 2141)
4a59de
4a59de
* Mon Mar 29 1999 Preston Brown <pbrown@redhat.com>
4a59de
- patch to fix xargs out of bounds overflow (bug # 1279)
4a59de
4a59de
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
4a59de
- auto rebuild in the new build environment (release 30)
4a59de
4a59de
* Fri Mar 19 1999 Jeff Johnson <jbj@redhat.com>
4a59de
- strip binaries.
4a59de
4a59de
* Mon Feb  8 1999 Jeff Johnson <jbj@redhat.com>
4a59de
- remove further updatedb remnants (#1072).
4a59de
4a59de
* Thu Dec 03 1998 Cristian Gafton <gafton@redhat.com>
4a59de
- added patch for glibc21
4a59de
4a59de
* Mon Nov 16 1998 Erik Troan <ewt@redhat.com>
4a59de
- removed locate stuff (as we now ship slocate)
4a59de
4a59de
* Wed Jun 10 1998 Erik Troan <ewt@redhat.com>
4a59de
- updated updatedb cron script to not look for $TMPNAME.n (which was
4a59de
  a relic anyway)
4a59de
- added -b parameters to all of the patches
4a59de
4a59de
* Fri Apr 24 1998 Prospector System <bugs@redhat.com>
4a59de
- translations modified for de, fr, tr
4a59de
4a59de
* Mon Mar 09 1998 Michael K. Johnson <johnsonm@redhat.com>
4a59de
- make updatedb.cron use mktemp correctly
4a59de
- make updatedb use mktemp
4a59de
4a59de
* Sun Nov 09 1997 Michael K. Johnson <johnsonm@redhat.com>
4a59de
- nobody should own tmpfile
4a59de
- ignore /net
4a59de
4a59de
* Wed Nov 05 1997 Michael K. Johnson <johnsonm@redhat.com>
4a59de
- made updatedb.cron do a better job of cleaning up after itself.
4a59de
4a59de
* Tue Oct 28 1997 Donald Barnes <djb@redhat.com>
4a59de
- fixed 64 bit-ism in getline.c, patch tacked on to end of glibc one
4a59de
4a59de
* Thu Oct 23 1997 Erik Troan <ewt@redhat.com>
4a59de
- added patch for glibc 2.1
4a59de
4a59de
* Fri Oct 17 1997 Donnie Barnes <djb@redhat.com>
4a59de
- added BuildRoot support
4a59de
4a59de
* Tue Oct 14 1997 Michael K. Johnson <johnsonm@redhat.com>
4a59de
- made updatedb.cron work even if "nobody" can't read /root
4a59de
- use mktemp in updatedb.cron
4a59de
4a59de
* Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
4a59de
- added missing info pages
4a59de
- uses install-info
4a59de
4a59de
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
4a59de
- built with glibc
4a59de
4a59de
* Mon Apr 21 1997 Michael K. Johnson <johnsonm@redhat.com>
4a59de
- fixed updatedb.cron