2013-09-26 17:14:40 +02:00

22 lines
575 B
Plaintext

$NetBSD: patch-ad,v 1.2 2005/07/22 22:13:25 adam Exp $
--- gmp/device.cc.orig 2004-09-24 02:12:20.000000000 +0000
+++ gmp/device.cc
@@ -15,6 +15,7 @@ extern "C" {
#include <sys/fcntl.h>
#include <sys/wait.h>
#include <unistd.h>
+#include <signal.h>
}
using namespace gmp;
@@ -358,7 +359,7 @@ bool Device::fork_child(const std::strin
close(c2p[0]);
close(c2p[1]);
// close(2); // close cerr
- char * shell = "/bin/bash";
+ char * shell = "/bin/sh";
std::string c = std::string("exec ") + n;
execl(shell, shell, "-c", c.c_str(), 0);
// exec failed!