diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2002-05-25 01:20:46 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2002-05-25 01:20:46 +0000 |
commit | 9d495ed7020ebe3a06b4b97fae674ed11f313df9 (patch) | |
tree | 7191f18ed112926f89bfb2fdca571b07caea4b6b /audio/snd/Makefile | |
parent | Update 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
Diffstat (limited to 'audio/snd/Makefile')
-rw-r--r-- | audio/snd/Makefile | 2 |
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) |