version 1.1, 1999/12/03 07:39:09 |
version 1.2, 2001/04/20 07:39:18 |
|
|
/* Conditionally execute a command based on machine and OS from gcconfig.h */ |
/* Conditionally execute a command based on machine and OS from gcconfig.h */ |
|
|
# include "gcconfig.h" |
# include "private/gcconfig.h" |
# include <stdio.h> |
# include <stdio.h> |
|
# include <string.h> |
|
# include <unistd.h> |
|
|
int main(argc, argv, envp) |
int main(argc, argv, envp) |
int argc; |
int argc; |
|
|
if (strcmp(OS_TYPE, "") != 0 && strcmp(argv[2], "") != 0 |
if (strcmp(OS_TYPE, "") != 0 && strcmp(argv[2], "") != 0 |
&& strcmp(OS_TYPE, argv[2]) != 0) return(0); |
&& strcmp(OS_TYPE, argv[2]) != 0) return(0); |
printf("^^^^Starting command^^^^\n"); |
printf("^^^^Starting command^^^^\n"); |
|
fflush(stdout); |
execvp(argv[3], argv+3); |
execvp(argv[3], argv+3); |
perror("Couldn't execute"); |
perror("Couldn't execute"); |
|
|