summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrevor Johnson <trevor@FreeBSD.org>2002-05-25 01:20:46 +0000
committerTrevor Johnson <trevor@FreeBSD.org>2002-05-25 01:20:46 +0000
commit9d495ed7020ebe3a06b4b97fae674ed11f313df9 (patch)
tree7191f18ed112926f89bfb2fdca571b07caea4b6b
parentUpdate to 0.10.4. This introduces some incompatibilities with the (diff)
Invert WITHOUT_RUBY logic. This should fix the bento build.
Notes
Notes: svn path=/head/; revision=59943
-rw-r--r--audio/snd/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/snd/Makefile b/audio/snd/Makefile
index bd6a24ea3f55..91d2218977ac 100644
--- a/audio/snd/Makefile
+++ b/audio/snd/Makefile
@@ -23,7 +23,7 @@ LIB_DEPENDS= gsl.0:${PORTSDIR}/math/gsl \
.if defined(WITHOUT_ESD)
RUN_DEPENDS= esd:${PORTSDIR}/audio/esound
.endif
-.if defined(WITHOUT_RUBY)
+.if !defined(WITHOUT_RUBY)
RUN_DEPENDS+= ruby:${PORTSDIR}/lang/ruby
.endif
.if defined(WITHOUT_X11)