From 7b2ccd751774521b4a23a5aaf18b9adf76cb6246 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Tue, 28 Aug 2007 22:15:16 +0000 Subject: [PATCH] Fixed another error in the make install command (that I created). The cantera-demos directory wasn't being populated. --- Cantera/matlab/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cantera/matlab/Makefile.in b/Cantera/matlab/Makefile.in index bcd32e91a..5062b642c 100644 --- a/Cantera/matlab/Makefile.in +++ b/Cantera/matlab/Makefile.in @@ -86,7 +86,7 @@ install: @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/private; done ) cd cantera/examples; \ ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/cantera-demos; done ) + @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera-demos; done ) cd cantera/@ThermoPhase; \ ( for iddd in *.m ; do \ @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@ThermoPhase; done )