Fix order of tokens in find command (thanks mikeb@redhat.com)

This commit is contained in:
Fernando Nasser 2006-09-11 19:25:05 +00:00
parent fca1b5906c
commit 83a5b2cc39
2 changed files with 5 additions and 2 deletions

View File

@ -66,7 +66,7 @@ if [ ! -z "$JARS" ]; then
# make the jar
pushd $JARDIR > /dev/null
find . -print -type f | LC_ALL=C sort | /usr/bin/zip -q -X -9 $j -@
find . -type f -print | LC_ALL=C sort | /usr/bin/zip -q -X -9 $j -@
popd > /dev/null
# Cleanup.

View File

@ -1,7 +1,7 @@
Summary: Red Hat specific rpm configuration files.
Name: redhat-rpm-config
Version: 8.0.45
Release: 4
Release: 5
License: GPL
Group: Development/System
Source: redhat-rpm-config-%{version}.tar.gz
@ -40,6 +40,9 @@ rm -rf ${RPM_BUILD_ROOT}
%{_prefix}/lib/rpm/redhat
%changelog
* Mon Sep 11 2006 Fernando Nasser <fnasser@redhat.com> - 8.0.45-5
- Fix order of tokens in find command (thanks mikeb@redhat.com)
* Thu Sep 7 2006 Ben Konrath <bkonrath@redhat.com> - 8.0.45-4
- Fix bug in repack jars script.