diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1994-10-04 15:12:57 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1994-10-04 15:12:57 +0000 |
commit | deab9494fa6cf32254d135ebd75d00f544208751 (patch) | |
tree | 9ca8c8a43c7a2bd2362c9a2c25b2248ef64a0861 /www/gn | |
parent | Add games hierarchy. (diff) |
These are my changes to support the new argument-less configure scripts.
Notes
Notes:
svn path=/head/; revision=170
Diffstat (limited to 'www/gn')
-rw-r--r-- | www/gn/scripts/configure | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/www/gn/scripts/configure b/www/gn/scripts/configure index a2cd84f715bd..cd81783f0464 100644 --- a/www/gn/scripts/configure +++ b/www/gn/scripts/configure @@ -1,16 +1,5 @@ #!/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 hostname=`hostname` echo -n "Hostname of server machine? [$hostname] " @@ -20,5 +9,5 @@ echo -n "URL to default WWW admin? [$maintainer] " read answer; if [ X$answer != X ]; then maintainer=$answer; fi sed -e "/GN_HOSTNAME/s/\".*\"/\"$hostname\"/" \ -e "/MAINTAINER/s/\".*\"/\"$maintainer\"/" \ - $WDIR/config.h >$WDIR/config.h.foo -mv $WDIR/config.h.foo $WDIR/config.h + ${WRKSRC}/config.h >${WRKSRC}/config.h.foo +mv ${WRKSRC}/config.h.foo ${WRKSRC}/config.h |