diff options
author | rillig <rillig@pkgsrc.org> | 2006-01-07 21:39:49 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-01-07 21:39:49 +0000 |
commit | 9600b279b0201ee4641b58da6638a5e4ccb4659e (patch) | |
tree | b359f82eb7cfc9891bd0053f76230a894fcfe299 | |
parent | 6f9a547c67e8070122783badf4d562d573082b2d (diff) | |
download | pkgsrc-9600b279b0201ee4641b58da6638a5e4ccb4659e.tar.gz |
Provide the configure script with an empty input file instead of feeding
a line of "\\n" to it.
-rw-r--r-- | chat/emech/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chat/emech/Makefile b/chat/emech/Makefile index fd5ba5292aa..ec32743781e 100644 --- a/chat/emech/Makefile +++ b/chat/emech/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2003/12/30 17:21:55 cjep Exp $ +# $NetBSD: Makefile,v 1.4 2006/01/07 21:39:49 rillig Exp $ # DISTNAME= emech-2.8.4 @@ -11,8 +11,10 @@ COMMENT= IRC bot written in C HAS_CONFIGURE= YES +# The ./configure script is interactive, but selects the default values +# when given no input. do-configure: - cd ${WRKSRC} && ${ECHO} "\n\n\n\n\n\n\n\n\n\n"|./configure + cd ${WRKSRC} && ./configure </dev/null post-install: ${INSTALL_PROGRAM} ${WRKSRC}/mech ${PREFIX}/bin |