--- src/usr.bin/make/Attic/compat.c 2005/02/01 22:05:36 1.27 +++ src/usr.bin/make/Attic/compat.c 2005/02/04 21:53:47 1.28 @@ -239,7 +239,6 @@ Compat_RunCommand(void *cmdp, void *gnp) ReturnStatus rstat; /* Status of fork */ LstNode *cmdNode; /* Node where current command is located */ char **av; /* Argument vector for thing to exec */ - int internal; /* Various values.. */ char *cmd = cmdp; GNode *gn = gnp; Buffer *buf; @@ -349,7 +348,7 @@ Compat_RunCommand(void *cmdp, void *gnp) shargv[2] = cmd; shargv[3] = NULL; av = shargv; - } else if ((internal = shellneed(cmd))) { + } else if (shellneed(cmd)) { /* * This command must be passed by the shell for other reasons.. * or.. possibly not at all.