]> SALOME platform Git repositories - modules/med.git/commitdiff
Salome HOME
According to following letter from Anthony Geay:
authorapo <apo@opencascade.com>
Fri, 11 Feb 2005 11:15:25 +0000 (11:15 +0000)
committerapo <apo@opencascade.com>
Fri, 11 Feb 2005 11:15:25 +0000 (11:15 +0000)
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 ?

Makefile.in

index f5530ea708168e0f1935c3ec0fe4ad65d5297160..128237327eed60aca3b42f8397f92ce371be016e 100644 (file)
@@ -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