diff options
author | cjep <cjep> | 2002-12-06 15:29:20 +0000 |
---|---|---|
committer | cjep <cjep> | 2002-12-06 15:29:20 +0000 |
commit | 384b131e7db5e150b8e8203aa3efde4f618e16b8 (patch) | |
tree | 0d0b6162ade43a17fb5bdc0379fe286297167575 | |
parent | a33035301036d43dcdcc2d7d9c108cf419184b56 (diff) | |
download | pkgsrc-384b131e7db5e150b8e8203aa3efde4f618e16b8.tar.gz |
Fix up configure nit for Solaris. Suggested by tron.
-rw-r--r-- | textproc/grep/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/textproc/grep/Makefile b/textproc/grep/Makefile index ac3d8ec1db2..3ccf1cf44ba 100644 --- a/textproc/grep/Makefile +++ b/textproc/grep/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2002/10/14 16:43:14 bouyer Exp $ +# $NetBSD: Makefile,v 1.2 2002/12/06 15:29:20 cjep Exp $ # FreeBSD Id: Makefile,v 1.10 1999/01/27 07:41:16 fenner Exp $ DISTNAME= grep-2.5 @@ -16,6 +16,12 @@ TEXINFO_REQD= 4.0 GNU_CONFIGURE= yes CONFIGURE_ARGS+= --program-prefix=g +.include "../../mk/bsd.prefs.mk" + +.if (${OPSYS} == SunOS) +CONFIGURE_SCRIPT= ${SH} ./configure +.endif + .include "../../devel/gettext-lib/buildlink2.mk" .include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" |