As for libc's `system', change Awk to look for `sh' in $PATH. This patch is
only meant to be used during bootstrapping, where we don't know in advance the
absolute file name of `sh'.
--- gawk-4.1.3/io.c 2015-05-19 15:37:20.000000000 +0200
+++ gawk-4.1.3/io.c 2015-06-09 18:39:36.918414881 +0200
@@ -2025,7 +2025,7 @@
set_sigpipe_to_default();
- execl("/bin/sh", "sh", "-c", command, NULL);
+ execlp("sh", "sh", "-c", command, NULL);
_exit(errno == ENOENT ? 127 : 126);
case -1:
@@ -2077,7 +2077,7 @@
signal(SIGPIPE, SIG_DFL);
- execl("/bin/sh", "sh", "-c", command, NULL);
+ execlp("sh", "sh", "-c", command, NULL);
_exit(errno == ENOENT ? 127 : 126);
case -1:
@@ -2422,7 +2422,7 @@
fatal(_("close of pipe failed (%s)"), strerror(errno));
/* stderr does NOT get dup'ed onto child's stdout */
set_sigpipe_to_default();
- execl("/bin/sh", "sh", "-c", str, NULL);
+ execlp("sh", "sh", "-c", str, NULL);
_exit(errno == ENOENT ? 127 : 126);
}
#endif /* NOT __EMX__, NOT __MINGW32__ */
@@ -2659,7 +2659,7 @@
if (close(p[0]) == -1 || close(p[1]) == -1)
fatal(_("close of pipe failed (%s)"), strerror(errno));
set_sigpipe_to_default();
- execl("/bin/sh", "sh", "-c", cmd, NULL);
+ execlp("sh", "sh", "-c", cmd, NULL);
_exit(errno == ENOENT ? 127 : 126);
}
#endif /* NOT __EMX__, NOT __MINGW32__ */
treecommitdiff
|
Age | Commit message (Expand) | Author |
2020-05-05 | gnu: hyperledger-iroha: Build with the latest Boost....* gnu/packages/hyperledger.scm (hyperledger-iroha)[inputs]: Change from
BOOST-1.69.0 to BOOST.
| Marius Bakke |
2020-03-21 | gnu: gRPC: Update to 1.27.3....* gnu/packages/rpc.scm (grpc): Update to 1.27.3.
[arguments]: Add "-DgRPC_ABSL_PROVIDER=package" in #:configure-flags.
[inputs]: Add ABSEIL-CPP.
(grpc-1.16.1): New public variable.
* gnu/packages/hyperledger.scm (hyperledger-iroha)[inputs]: Change from GRPC
to GRPC-1.16.
* gnu/packages/machine-learning.scm (tensorflow)[native-inputs, inputs]: Likewise.
| Marius Bakke |
2020-03-21 | gnu: gRPC: Move to (gnu packages rpc)....* gnu/packages/machine-learning.scm (grpc): Move to ...
* gnu/packages/rpc.scm: ... here. New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/hyperledger.scm: Adjust module imports.
| Marius Bakke |
2020-03-12 | gnu: Add hyperledger-iroha....This package was co-authored with Efraim Flashner <efraim@flashner.co.il>
* gnu/packages/hyperledger.scm (hyperledger-iroha): New variable.
| Pierre Neidhardt |
2020-03-12 | gnu: Add hyperledger-iroha-ed25519....* gnu/packages/hyperledger.scm (hyperledger-iroha-ed25519): New variable.
| Pierre Neidhardt |
orter-shepherd-service): Use the relevant user and group.
(prometheus-node-exporter-service-type): Extend the account service type.
Christopher Baines |
2020-12-07 | services: prometheus-node-exporter: Neaten up....Add relevant exports, as well as a comment to better indicate where the
relevant code starts.
* gnu/services/monitoring.scm (prometheus-node-exporter-service-type):
Capitalise Prometheus.
| Christopher Baines |
2020-11-29 | services: zabbix-agent: Delete not mandatory hostname configuration....* gnu/services/monitoring.scm
(zabbix-agent-configuration)[hostname]: Set to empty string.
| Oleg Pykhalov |
2020-11-05 | services: Remove imports of (ice-9 …) modules....* gnu/services/monitoring.scm (zabbix-server-activation): Remove (ice-9
rdelim) from the imported modules.
(zabbix-agent-activation): Likewise.
* gnu/tests/mail.scm (run-exim-test)[test]: Remove (ice-9 ftw) from the
imported modules.
| Ludovic Courtès |
2019-11-03 | gnu: zabbix-agentd: Update to 4.4.1....* gnu/packages/monitoring.scm (zabbix-agentd): Update to 4.4.1.
* gnu/services/monitoring.scm (%zabbix-front-end-configuration-nginx): Add
listen record field.
| Oleg Pykhalov |