diff options
author | rillig <rillig> | 2007-03-17 17:29:01 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-03-17 17:29:01 +0000 |
commit | 8e165654c73b0ca2124bd7d0af7460ab709f9cf7 (patch) | |
tree | ddb348c83f3549606e215b4fe2c30cd62e160a1e /textproc/ruby-eruby | |
parent | 6ae4854cbb0cd7ed0773c5142ec6b04a941bbdcc (diff) | |
download | pkgsrc-8e165654c73b0ca2124bd7d0af7460ab709f9cf7.tar.gz |
The ruby binary is not a script. It's a binary. Fixes the following
error message:
=> Checking for portability problems in extracted files
/usr/pkg/bin/ruby18: 1: Syntax error: "(" unexpected
Diffstat (limited to 'textproc/ruby-eruby')
-rw-r--r-- | textproc/ruby-eruby/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/textproc/ruby-eruby/Makefile b/textproc/ruby-eruby/Makefile index 71c05f087f9..26b90068e9d 100644 --- a/textproc/ruby-eruby/Makefile +++ b/textproc/ruby-eruby/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2006/07/09 15:08:30 taca Exp $ +# $NetBSD: Makefile,v 1.21 2007/03/17 17:29:01 rillig Exp $ DISTNAME= eruby-${ERUBY_VERSION} PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME} @@ -16,7 +16,8 @@ CONFLICTS+= ruby[1-9][0-9]-eruby-* RUBY_HAS_ARCHLIB= yes ERUBY_VERSION= 1.0.5 HAS_CONFIGURE= yes -CONFIGURE_SCRIPT= ${RUBY} configure.rb +CONFIG_SHELL= ${RUBY} +CONFIGURE_SCRIPT= configure.rb CONFIGURE_ARGS+= --enable-shared \ --with-charset=${ERUBY_DEFAULT_CHARSET:Q} INSTALL_TARGET= site-install |