From 83a5b2cc390205727f16796cc63f6c16b2c0f6d1 Mon Sep 17 00:00:00 2001 From: Fernando Nasser Date: Sep 11 2006 19:25:05 +0000 Subject: Fix order of tokens in find command (thanks mikeb@redhat.com) --- diff --git a/brp-java-repack-jars b/brp-java-repack-jars index e73116d..7ab61a7 100644 --- a/brp-java-repack-jars +++ b/brp-java-repack-jars @@ -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. diff --git a/redhat-rpm-config.spec b/redhat-rpm-config.spec index 1dcbf0b..8902622 100644 --- a/redhat-rpm-config.spec +++ b/redhat-rpm-config.spec @@ -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 - 8.0.45-5 +- Fix order of tokens in find command (thanks mikeb@redhat.com) + * Thu Sep 7 2006 Ben Konrath - 8.0.45-4 - Fix bug in repack jars script.