mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 18:41:17 +02:00
7 lines
198 B
Bash
7 lines
198 B
Bash
#!/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
|