09e4abae98
Closes PR 7294 by Eric Fox.
28 lines
632 B
Bash
28 lines
632 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: configure,v 1.1.1.1 1999/03/31 06:34:07 garbled Exp $
|
|
# FreeBSD Id: configure,v 1.1.1.1 1995/03/27 21:35:21 joerg Exp
|
|
#
|
|
# Author: Jörg Wunsch <joerg@FreeBSD.org>
|
|
# Date of creation: Mar 27, 1995
|
|
#
|
|
|
|
cd ${WRKSRC}
|
|
mkdir ${WRKSRC}/bootstrap
|
|
sh < ${FILESDIR}/bootstrap.shar
|
|
|
|
# create a Makefile.inc to pass the local prefix down to
|
|
# the build stage:
|
|
|
|
cat > ${WRKSRC}/Makefile.inc <<*EOF*
|
|
#
|
|
# Makefile.inc
|
|
#
|
|
# This file has been created by the "configure" script; DO NOT EDIT.
|
|
#
|
|
# Edit the port's Makefile \${PREFIX} variable should you wish to
|
|
# override this, and reconfigure.
|
|
#
|
|
|
|
LOCALPREFIX = ${PREFIX}
|
|
*EOF*
|