diff options
author | swills <swills@FreeBSD.org> | 2014-10-01 23:45:27 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2014-10-01 23:45:27 +0800 |
commit | e8df742801986ba2e0e0ce947a41a3bbe02c443d (patch) | |
tree | 76856ff2913b9dea93f1727c2a0f27071d8802f8 /Mk/bsd.ruby.mk | |
parent | 6310959cb2a675a2ebbbf68b764b12521de1b308 (diff) | |
download | freebsd-ports-gnome-e8df742801986ba2e0e0ce947a41a3bbe02c443d.tar.gz freebsd-ports-gnome-e8df742801986ba2e0e0ce947a41a3bbe02c443d.tar.zst freebsd-ports-gnome-e8df742801986ba2e0e0ce947a41a3bbe02c443d.zip |
lang/ruby2*: fix dtrace support
DTrace support in ruby needs the -xnolibs flag added to the dtrace command
called during build to ensure that dtrace support is enabled even if the dtrace
kernel modules are not loaded at build time.
However, with this dtrace will be enabled on some OS versions where it will not
work, so add logic to disable it where appropriate.
Diffstat (limited to 'Mk/bsd.ruby.mk')
-rw-r--r-- | Mk/bsd.ruby.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.ruby.mk b/Mk/bsd.ruby.mk index e3946d91628d..aff819951323 100644 --- a/Mk/bsd.ruby.mk +++ b/Mk/bsd.ruby.mk @@ -193,7 +193,7 @@ RUBY21= "@comment " # Ruby 2.0 # RUBY_RELVERSION= 2.0.0 -RUBY_PORTREVISION= 0 +RUBY_PORTREVISION= 1 RUBY_PORTEPOCH= 1 RUBY_PATCHLEVEL= 576 @@ -209,7 +209,7 @@ RUBY21= "@comment " # Ruby 2.1 # RUBY_RELVERSION= 2.1.3 -RUBY_PORTREVISION= 0 +RUBY_PORTREVISION= 1 RUBY_PORTEPOCH= 1 RUBY_PATCHLEVEL= 0 |