diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-01-10 03:50:08 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-01-10 04:01:16 -0500 |
commit | 99d8e879938c947588332a9cc579d378ccc2a855 (patch) | |
tree | f3dbd76547c40b151376f065da9d4955a75e248d /sim/common/gentmap.c | |
parent | 6d90347b5dcbb10ecb410b1246613c0caf511bd9 (diff) | |
download | fsf-binutils-gdb-99d8e879938c947588332a9cc579d378ccc2a855.zip fsf-binutils-gdb-99d8e879938c947588332a9cc579d378ccc2a855.tar.gz fsf-binutils-gdb-99d8e879938c947588332a9cc579d378ccc2a855.tar.bz2 |
sim: drop targ-vals.def->nltvals.def indirection
We don't have alternative nltvals.def files, so always symlinking
the targ-vals.def file to it doesn't gain us anything. It does
make the build more complicated though and a pain to convert to
something newer (like automake). Drop the symlinking entirely.
In the future, we'll want to explode this file anyways into the
respective arch dirs so things can be selected dynamically at
runtime, so it's not like we'll be bringing this back.
Diffstat (limited to 'sim/common/gentmap.c')
-rw-r--r-- | sim/common/gentmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sim/common/gentmap.c b/sim/common/gentmap.c index 669a7e5..a606fad 100644 --- a/sim/common/gentmap.c +++ b/sim/common/gentmap.c @@ -11,21 +11,21 @@ struct tdefs { static struct tdefs sys_tdefs[] = { #define sys_defs -#include "targ-vals.def" +#include "nltvals.def" #undef sys_defs { 0, 0 } }; static struct tdefs errno_tdefs[] = { #define errno_defs -#include "targ-vals.def" +#include "nltvals.def" #undef errno_defs { 0, 0 } }; static struct tdefs open_tdefs[] = { #define open_defs -#include "targ-vals.def" +#include "nltvals.def" #undef open_defs { 0, 0 } }; |