From: Tobias Oetiker Date: Tue, 8 May 2007 15:10:21 +0000 (+0000) Subject: ruby complained about finding a previous copy of the rrdtool extension ... very odd... X-Git-Tag: 1.2.24~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6424f16554837d50f624bf0b99f1c5c57bf3ea57;p=thirdparty%2Frrdtool-1.x.git ruby complained about finding a previous copy of the rrdtool extension ... very odd thing actually ... adding RUBYARCHDIR= seems to help ... git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2/program@1056 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/bindings/Makefile.am b/bindings/Makefile.am index 6b2eff2c..76d587cb 100644 --- a/bindings/Makefile.am +++ b/bindings/Makefile.am @@ -23,8 +23,10 @@ install-data-local: test -d python/build && cd python && env LIBDIR=$(libdir) $(PYTHON) setup.py install --skip-build --prefix=$(DESTDIR)$(prefix) --exec-prefix=$(DESTDIR)$(exec_prefix) || true # rules for buildung the ruby module +# RUBYARCHDIR= is to work around in a makefile quirk not sure +# it is is the right thing todo, but it makes rrdtool build on freebsd as well ruby: - cd ruby && $(RUBY) extconf.rb && $(MAKE) EPREFIX=$(exec_prefix) $(RUBY_MAKE_OPTIONS) + cd ruby && $(RUBY) extconf.rb && $(MAKE) EPREFIX=$(exec_prefix) $(RUBY_MAKE_OPTIONS) RUBYARCHDIR= # rules for buildung the pyton module python: