mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
6 lines
111 B
Bash
Executable File
6 lines
111 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for i in . `make all-depends-list`; do
|
|
cd $i && [ -f "`make -V PKGFILE`" ] && make -V PKGFILE
|
|
done
|