From bdfd52fc5868bf751e066e83a560f1a99331e8ce Mon Sep 17 00:00:00 2001 From: san Date: Tue, 26 Jul 2005 11:51:59 +0000 Subject: [PATCH] install-appliskel step coorrected so as not to break installation when appliskel sub-directory is not found in bin/salome subdirectory (sometimes it happens, since appliskel directory contains no files currently, and cvs checkout -P ignores this directory). --- Makefile.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 00cf546f5..4b00a7b08 100644 --- a/Makefile.in +++ b/Makefile.in @@ -114,7 +114,9 @@ install-include: $(include_list) # install script in $(bindir) : install-appliskel: $(INSTALL) -d $(bindir) - cp -rp $(top_builddir)/bin/salome/appliskel $(bindir) + if test -d $(top_builddir)/bin/salome/appliskel; then \ + cp -rp $(top_builddir)/bin/salome/appliskel $(bindir); \ + fi; install-bin: $(BIN_SCRIPT) $(INSTALL) -d $(bindir) -- 2.39.2