summaryrefslogtreecommitdiffstats
path: root/testing/source/PAM/build-all-pam-packages.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testing/source/PAM/build-all-pam-packages.sh')
-rwxr-xr-xtesting/source/PAM/build-all-pam-packages.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/source/PAM/build-all-pam-packages.sh b/testing/source/PAM/build-all-pam-packages.sh
new file mode 100755
index 000000000..3f8846113
--- /dev/null
+++ b/testing/source/PAM/build-all-pam-packages.sh
@@ -0,0 +1,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
+)