diff options
Diffstat (limited to 'net-fs/openafs/files/openafs-pinstall-execve-env.patch')
-rw-r--r-- | net-fs/openafs/files/openafs-pinstall-execve-env.patch | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/net-fs/openafs/files/openafs-pinstall-execve-env.patch b/net-fs/openafs/files/openafs-pinstall-execve-env.patch deleted file mode 100644 index 4fd9c4e61cc3..000000000000 --- a/net-fs/openafs/files/openafs-pinstall-execve-env.patch +++ /dev/null @@ -1,58 +0,0 @@ ---- openafs/src/pinstall/install.c 2003-07-25 04:40:16.000000000 +0000 -+++ openafs/src/pinstall/install.c 2003-11-17 21:47:15.000000000 +0000 -@@ -172,6 +172,9 @@ - char *iname, *oname; { - int pid; - pid_t status; -+ static char *env[] = { -+ 0, -+ }; - static char *strip[] = { - "strip", 0, 0, - }; -@@ -190,7 +193,7 @@ - case 0: /* child */ - copy[1] = iname; - copy[2] = oname; -- execve("/bin/cp", copy, (char **)0); -+ execve("/bin/cp", copy, env); - perror("/bin/cp"); - exit(1); - -@@ -236,7 +239,7 @@ - #else - #define STRIP_BIN "/bin/strip" - #endif -- execve(STRIP_BIN, strip, (char **)0); -+ execve(STRIP_BIN, strip, env); - perror(STRIP_BIN); - exit(1); - -@@ -281,6 +284,9 @@ - quickStrip (iname, oname, ignored, copy_only) - char *iname, *oname; { - int pid, status; -+ static char *env[] = { -+ 0, -+ }; - static char *strip[] = { - "strip", 0, 0, - }; -@@ -299,7 +305,7 @@ - case 0: /* child */ - copy[1] = iname; - copy[2] = oname; -- execve("/bin/cp", copy, 0); -+ execve("/bin/cp", copy, env); - perror("/bin/cp"); - exit(1); - -@@ -337,7 +343,7 @@ - - case 0: /* child */ - strip[1] = oname; -- execve("/bin/strip", strip, 0); -+ execve("/bin/strip", strip, env); - perror("/bin/strip"); - exit(1); - |