Suppress duplicat autoInstalls
authorH.G.Muller <hgm@hgm-xboard.(none)>
Tue, 21 Oct 2014 19:52:21 +0000 (21:52 +0200)
committerH.G.Muller <hgm@hgm-xboard.(none)>
Tue, 21 Oct 2014 19:52:21 +0000 (21:52 +0200)
If the engine line constructed for -autoInstall already occurs in
the engine list, we should not install it again.

menus.c

diff --git a/menus.c b/menus.c
index 9d2b286..086c9b4 100644 (file)
--- a/menus.c
+++ b/menus.c
@@ -1176,6 +1176,7 @@ InstallNewEngine (char *command, char *dir, char *variants, char *protocol)
        snprintf(buf + strlen(buf), MSG_SIZ - strlen(buf), " -fd %s", dir);
     if(!strcmp(protocol, "uci"))
        snprintf(buf + strlen(buf), MSG_SIZ - strlen(buf), " -fUCI");
+    if(strstr(firstChessProgramNames, buf)) return; // avoid duplicats
     // append line
     quote = malloc(strlen(firstChessProgramNames) + strlen(buf) + 2);
     sprintf(quote, "%s%s\n", firstChessProgramNames, buf);