From 4f47a3457a73ab3a033f0b68de78816d19158eb4 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Thu, 12 Jul 2007 19:26:15 +0000 Subject: [PATCH] Added a -c argument to @INSTALL@, so that the default config/install-sh will do a "cp" instead of a "mv". --- Cantera/cxx/demos/Makefile.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cantera/cxx/demos/Makefile.in b/Cantera/cxx/demos/Makefile.in index 35f745816..1f8c94721 100644 --- a/Cantera/cxx/demos/Makefile.in +++ b/Cantera/cxx/demos/Makefile.in @@ -82,14 +82,14 @@ test: install: @INSTALL@ -d @ct_demodir@/cxx - @INSTALL@ *.cpp @ct_demodir@/cxx - @INSTALL@ *.h @ct_demodir@/cxx - @INSTALL@ Makefile.install @ct_demodir@/cxx/Makefile + @(for ihhh in *.cpp *.h Makefile.install ; do \ + @INSTALL@ -c $${ihhh} @ct_demodir@/cxx ; \ + echo "@INSTALL@ -c $${ihhh} @ct_demodir@/cxx" ; \ + done ) depends: $(DEPENDS) @MAKE@ .depends - .depends: $(DEPENDS) cat $(DEPENDS) > .depends