From 2978381abd3c1b13fcb534280b66966b86982593 Mon Sep 17 00:00:00 2001 From: Matthias Kramm Date: Sat, 5 Jun 2010 19:52:43 -0700 Subject: [PATCH] fixed bug in configure --- configure.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 62b064b..ad297de 100644 --- a/configure.in +++ b/configure.in @@ -391,7 +391,9 @@ fi RFX_CHECK_RUBY if test "x$RUBY_OK" '!=' "xyes";then - echo all install uninstall clean: > lib/ruby/Makefile + if test -d "lib/ruby/";then + echo all install uninstall clean: > lib/ruby/Makefile + fi # fail silently- the most users won't have any need for the # ruby interface anyway else -- 1.7.10.4