summaryrefslogtreecommitdiffstats
path: root/extract-distro.sh
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>2009-01-06 22:55:06 -0800
committerRoland McGrath <roland@redhat.com>2009-01-06 22:55:06 -0800
commit2e943a5f18eaf1889eba98c16fdc3df118e4e83f (patch)
treede42b0f9632502103332fffeee521011afaa17e4 /extract-distro.sh
parent487b56811b3a67b25bc13a9114378e87e0fb5c1a (diff)
downloaddebuginfo-test-scripts-2e943a5f18eaf1889eba98c16fdc3df118e4e83f.tar.gz
debuginfo-test-scripts-2e943a5f18eaf1889eba98c16fdc3df118e4e83f.tar.xz
debuginfo-test-scripts-2e943a5f18eaf1889eba98c16fdc3df118e4e83f.zip
now for all the peanuts
Diffstat (limited to 'extract-distro.sh')
-rwxr-xr-xextract-distro.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/extract-distro.sh b/extract-distro.sh
index 348e7f9..8312fe3 100755
--- a/extract-distro.sh
+++ b/extract-distro.sh
@@ -8,11 +8,11 @@ here=`pwd`
df -h .
-find "$@" -name debug -o -name Debuginfo | (
+find "$@" \( -name debug -o -name Debuginfo \) -print -prune | (
echo 'all: \'
- sed 's,^.*$,do/& \\,'
+ sed 's,^.*$,do/@& \\,'
echo
- echo 'do/%:;(cd $* && ls | extract-rpm.sh "$$here") | pack-debuginfo.sh'
+ echo 'do/@%:;(cd $* && ls | extract-rpm.sh "$$here") | pack-debuginfo.sh'
) | make -f - -r here="$here" -s -j$(getconf _NPROCESSORS_ONLN)
df -h .