diff options
author | knu <knu@FreeBSD.org> | 2002-01-30 10:38:18 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-30 10:38:18 +0800 |
commit | 8c2324b7ed70be47dbab120966270a68fa344ff1 (patch) | |
tree | c353d3cc08a50a3cab6de220efe1f3f6bbddf64a /databases/ruby-mysql | |
parent | 47d04b2d7c949c7a6498cf64cf5fec7ca8ffaca9 (diff) | |
download | freebsd-ports-graphics-8c2324b7ed70be47dbab120966270a68fa344ff1.tar.gz freebsd-ports-graphics-8c2324b7ed70be47dbab120966270a68fa344ff1.tar.zst freebsd-ports-graphics-8c2324b7ed70be47dbab120966270a68fa344ff1.zip |
Due to mkmf.rb's bug, this port was not LOCALBASE clean against our will. ;)
Work around the problem by specifying --with-mysql-dir="${LOCALBASE}"
and let the extconf.rb's trick work. (A fix against mkmf.rb will
follow later)
PR: ports/34389
Submitted by: Thomas Hurst <freaky@aagh.net>
Diffstat (limited to 'databases/ruby-mysql')
-rw-r--r-- | databases/ruby-mysql/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/databases/ruby-mysql/Makefile b/databases/ruby-mysql/Makefile index 49ca3dc575a..24cff5661cb 100644 --- a/databases/ruby-mysql/Makefile +++ b/databases/ruby-mysql/Makefile @@ -20,8 +20,7 @@ LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client USE_RUBY= yes USE_RUBY_EXTCONF= yes -CONFIGURE_ARGS= --with-mysql-include="${LOCALBASE}/include/mysql" \ - --with-mysql-lib="${LOCALBASE}/lib/mysql" +CONFIGURE_ARGS= --with-mysql-dir="${LOCALBASE}" INSTALL_TARGET= site-install post-install: |