dmd2.081: backport clean ld exit.
This commit is contained in:
parent
75a8098ceb
commit
c983922597
|
@ -0,0 +1,11 @@
|
|||
--- dmd/src/dmd/link.d
|
||||
+++ dmd/src/dmd/link.d
|
||||
@@ -685,7 +685,7 @@ public int runLINK()
|
||||
close(fds[0]);
|
||||
execvp(argv[0], cast(char**)argv.tdata());
|
||||
perror(argv[0]); // failed to execute
|
||||
- return -1;
|
||||
+ _exit(-1);
|
||||
}
|
||||
else if (childpid == -1)
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'dmd2.081'
|
||||
pkgname=dmd2.081
|
||||
version=2.081.1
|
||||
revision=2
|
||||
revision=3
|
||||
create_wrksrc=yes
|
||||
hostmakedepends="which"
|
||||
makedepends="dmd-bootstrap"
|
||||
|
|
Loading…
Reference in New Issue