mirror of
https://github.com/darlinghq/cctools-port.git
synced 2024-11-27 06:00:31 +00:00
FIX: wrong libexecdir used so as does not find its assembler
if you set a libexecdir via configure, the as tool does not find its assembler. This is caused by a wrong search-path used. I compared it with the old odcctools which I used before, and found that the define for the directory was not used anymore
This commit is contained in:
parent
8395d4b2c3
commit
d71e224dc2
@ -29,8 +29,8 @@ int argc,
|
||||
char **argv,
|
||||
char **envp)
|
||||
{
|
||||
const char *LIB = "../libexec/as/";
|
||||
const char *LOCALLIB = "../local/libexec/as/";
|
||||
const char *LIB = ASLIBEXECDIR;
|
||||
const char *LOCALLIB = ASLIBEXECDIR;
|
||||
const char *AS = "/as";
|
||||
|
||||
int i, j;
|
||||
|
Loading…
Reference in New Issue
Block a user