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:
Flow86 2017-10-01 12:09:45 +02:00 committed by GitHub
parent 8395d4b2c3
commit d71e224dc2

View File

@ -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;