From: apo Date: Fri, 11 Feb 2005 11:15:25 +0000 (+0000) Subject: According to following letter from Anthony Geay: X-Git-Tag: T_22_03_05~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=2f7272521f80faa83cee6bb9ebe8742604a170ec;p=modules%2Fmed.git According to following letter from Anthony Geay: Erwan has downloaded the HEAD of KERNEL and MED cvs sources, and a problem has appeared on a second make install for MED. The problem is due to the VERSION file that is in read only. To solve it you only need to add -f option on line 146 of Makefile.in at the root of MED_SRC. The lines becomes "(cp -p -f ./bin/salome/$$f $(bindir) || exit 1);" Could you integrate this correction for V220 please ? --- diff --git a/Makefile.in b/Makefile.in index f5530ea70..128237327 100644 --- a/Makefile.in +++ b/Makefile.in @@ -143,7 +143,7 @@ install-bin: $(BIN_SCRIPT) $(INSTALL) -d $(bindir) for f in X $(BIN_SCRIPT); do \ if test $$f != X; then \ - (cp -p ./bin/salome/$$f $(bindir) || exit 1); \ + (cp -p -f ./bin/salome/$$f $(bindir) || exit 1); \ fi; \ done