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 | cab1b7c2429ee2039e161d5968d95a5a8aa12964 (patch) | |
tree | b359f82eb7cfc9891bd0053f76230a894fcfe299 /chat | |
parent | e2c21ae20d3862fe7572d8a5219cb049880c118a (diff) | |
download | pkgsrc-cab1b7c2429ee2039e161d5968d95a5a8aa12964.tar.gz |
Provide the configure script with an empty input file instead of feeding
a line of "\\n" to it.
Diffstat (limited to 'chat')
-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 |