diff options
Diffstat (limited to 'elf/readlib.c')
-rw-r--r-- | elf/readlib.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/elf/readlib.c b/elf/readlib.c index 361f78c95d..efc2e10053 100644 --- a/elf/readlib.c +++ b/elf/readlib.c @@ -123,7 +123,10 @@ process_file (const char *real_file_name, const char *file_name, /* First check if this is an aout file. */ aout_header = (struct exec *) file_contents; if (N_MAGIC (*aout_header) == ZMAGIC - || N_MAGIC (*aout_header) == QMAGIC) +#ifdef QMAGIC /* Linuxism. */ + || N_MAGIC (*aout_header) == QMAGIC +#endif + ) { /* Aout files don't have a soname, just return the name including the major number. */ |