From 8095d0e34a82423be6c7a0428ced1afcff6bdcd9 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Sun, 19 Apr 2009 15:48:14 +0000 Subject: [PATCH] Put the tutorials in the same spot as the other matlab stuff. It now aggrees with the message that the user sees after the install. --- Cantera/matlab/Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cantera/matlab/Makefile.in b/Cantera/matlab/Makefile.in index 5062b642c..5c9a240b4 100644 --- a/Cantera/matlab/Makefile.in +++ b/Cantera/matlab/Makefile.in @@ -168,9 +168,12 @@ install: cd cantera/1D/@Stack/private; \ ( for iddd in *.m ; do \ @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/1D/@Stack/private; done ) + @INSTALL@ -d @prefix@/matlab/toolbox/cantera/cantera-tutorials + ( for iddd in cantera/tutorial/*.m ; do \ + @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera-tutorials; done ) @INSTALL_abs@ -d @ct_demodir@/matlab ( for iddd in cantera/examples/*.m ; do \ - @INSTALL_abs@ -c $${iddd} @ct_demodir@/matlab; done ) + @INSTALL_abs@ -c $${iddd} @ct_demodir@/matlab; done ) @INSTALL@ -d @ct_tutdir@/matlab ( for iddd in cantera/tutorial/*.m ; do \ @INSTALL_abs@ -c $${iddd} @ct_tutdir@/matlab; done )