summaryrefslogtreecommitdiffstats
path: root/testing/source/PAM/build-all-pam-packages.sh
blob: 3f8846113ea011de55125255ed9e7eb560c7cc78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

cd $(dirname $0) ; CWD=$(pwd)

rm -rf /tmp/pam-packages
TMP=/tmp/pam-packages
export TMP
mkdir -p $TMP

BUILDLIST=$CWD/buildlist ./make_world.sh

# Give everything a _pam build suffix while it remains in /testing:
( cd $TMP
  for package in *.txz ; do
    mv $package $(basename $package .txz)_pam.txz
  done
)