diff options
-rw-r--r-- | pod/perldelta.pod | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 219213925a..4807ecdff8 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -757,6 +757,17 @@ this. Many issues have been detected by L<Coverity|http://www.coverity.com/> and fixed. +=item * + +system() and friends should now work properly on more Android builds. + +Due to an oversight, the value specified through -Dtargetsh to Configure +would end up being ignored by some of the build process. This caused perls +cross-compiled for Android to end up with defective versions of system(), +exec() and backticks: the commands would end up looking for C</bin/sh> +instead of C</system/bin/sh>, and so would fail for the vast majority +of devices, leaving C<$!> as C<ENOENT>. + =back =head1 Known Problems |