summaryrefslogtreecommitdiffstats
path: root/extract-distro.sh
blob: 348e7f9c3cc1fee4580cb65462fa38196f766c13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

srcdir=`dirname $0`
srcdir=`(cd "$srcdir"; pwd)`
PATH="$srcdir:$PATH"

here=`pwd`

df -h .

find "$@" -name debug -o -name Debuginfo | (
  echo 'all: \'
  sed 's,^.*$,do/& \\,'
  echo
  echo 'do/%:;(cd $* && ls | extract-rpm.sh "$$here") | pack-debuginfo.sh'
) | make -f - -r here="$here" -s -j$(getconf _NPROCESSORS_ONLN)

df -h .