diff options
author | adam <adam@FreeBSD.org> | 1994-08-30 12:55:07 +0000 |
---|---|---|
committer | adam <adam@FreeBSD.org> | 1994-08-30 12:55:07 +0000 |
commit | 934155fdcfc257a0a399568d3bec4f14572cf880 (patch) | |
tree | a78557ec48a14b38aed306b87764a0ebffe58129 /net/dgd/scripts | |
parent | aa5e8711e2b185dea45c825a7063e89c19dad694 (diff) | |
download | FreeBSD-ports-934155fdcfc257a0a399568d3bec4f14572cf880.zip FreeBSD-ports-934155fdcfc257a0a399568d3bec4f14572cf880.tar.gz |
naked dgd port, this just deals with the sources necessary to build the
driver and the precompiler.
Reviewed by:
Submitted by:
Diffstat (limited to 'net/dgd/scripts')
-rw-r--r-- | net/dgd/scripts/configure | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/net/dgd/scripts/configure b/net/dgd/scripts/configure new file mode 100644 index 0000000..e6a5e9e --- /dev/null +++ b/net/dgd/scripts/configure @@ -0,0 +1,14 @@ +#!/bin/sh +# +if [ $# -ne 3 ]; then + echo "This script should only be run by the Makefile." + exit 1 +fi + +# First arg is top level ports directory, second is current directory, +# third is the directory containing the dist. +# +PDIR=$1 +CDIR=$2 +WDIR=$3 + |