5d33e04596
Where appropriate fiddle with a few other things.
14 lines
187 B
Bash
14 lines
187 B
Bash
#! /bin/sh
|
|
|
|
# MAINTAINER: portmgr@FreeBSD.org
|
|
|
|
set -o pipefail
|
|
|
|
if [ -z "${SCRIPTSDIR}" ]; then
|
|
echo "Must set SCRIPTSDIR" >&2
|
|
exit 1
|
|
fi
|
|
|
|
. ${SCRIPTSDIR}/functions.sh
|
|
|
|
export_ports_env
|