Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test-ports/ports-dep-args/Tools/scripts/pkg-stash/pkg-list.sh')
-rw-r--r--test-ports/ports-dep-args/Tools/scripts/pkg-stash/pkg-list.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-ports/ports-dep-args/Tools/scripts/pkg-stash/pkg-list.sh b/test-ports/ports-dep-args/Tools/scripts/pkg-stash/pkg-list.sh
new file mode 100644
index 00000000..a3da4553
--- /dev/null
+++ b/test-ports/ports-dep-args/Tools/scripts/pkg-stash/pkg-list.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+# $FreeBSD: head/Tools/scripts/pkg-stash/pkg-list.sh 340719 2014-01-22 15:52:06Z mat $
+
+for i in . `make all-depends-list`; do
+ cd $i && [ -f "`make -V PKGFILE`" ] && make -V PKGFILE
+done