From a44fa426c4bcdbc7fe9f997a8ea84f79bd38a14c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien.villemot@ens.fr>
Date: Wed, 4 Apr 2012 22:16:30 +0200
Subject: [PATCH] Simplify logic of test since Octave 3.2 is now the minimal
 requirement

---
 matlab/dynare.m | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/matlab/dynare.m b/matlab/dynare.m
index cb82f0c0d8..bda0104e06 100644
--- a/matlab/dynare.m
+++ b/matlab/dynare.m
@@ -103,8 +103,7 @@ end
 
 % Workaround for bug in Octave 3.2
 % See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=550823
-if exist('OCTAVE_VERSION') && ~octave_ver_less_than('3.2.0') ...
-        && octave_ver_less_than('3.4.0')
+if exist('OCTAVE_VERSION') && octave_ver_less_than('3.4.0')
     sleep(2)
 end
 
-- 
GitLab