From 6adb58dbc1a41dbab497dba28c1a864b7027348c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien.villemot@ens.fr>
Date: Tue, 18 Sep 2012 11:42:11 +0200
Subject: [PATCH] Remove workaround for Octave 3.2 (we now require 3.4)

---
 matlab/dynare.m | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/matlab/dynare.m b/matlab/dynare.m
index da761ed820..cc81bb8da5 100644
--- a/matlab/dynare.m
+++ b/matlab/dynare.m
@@ -101,12 +101,6 @@ for i=2:nargin
     command = [command ' ' varargin{i-1}];
 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.4.0')
-    sleep(2)
-end
-
 [status, result] = system(command);
 disp(result)
 if status
-- 
GitLab