aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/B92test-pkg7
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/B92test-pkg b/examples/B92test-pkg
index 220adb4..5a5dee2 100644
--- a/examples/B92test-pkg
+++ b/examples/B92test-pkg
@@ -3,7 +3,14 @@
# 2005 Junichi Uekawa
set -e
+echo "Installing the prerequisites"
+for PKG in $(ls /tmp/buildd/*.deb | sed -e's,.*/,,;s,_.*,,' ); do
+ apt-get install -y "$PKG"
+ apt-get remove -y "$PKG"
+done
+
dpkg -i /tmp/buildd/*.deb
+
chmod a+x /tmp/buildd/*/debian/pbuilder-test/*
SUCCESS=0
COUNT=0