diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-11-28 00:56:03 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-11-28 00:56:44 -0500 |
commit | 961af0641ec4875f3d993e6e2f94e0c28453f5c8 (patch) | |
tree | 968a4092dddbfb9c9603cc2cdc32e31f6c275f81 /sim/moxie | |
parent | 8be0a6307c5379e4d3790d298e0ec22eadd055b9 (diff) | |
download | gdb-961af0641ec4875f3d993e6e2f94e0c28453f5c8.zip gdb-961af0641ec4875f3d993e6e2f94e0c28453f5c8.tar.gz gdb-961af0641ec4875f3d993e6e2f94e0c28453f5c8.tar.bz2 |
sim: moxie: fix datadir handling
Expand the value at `make` time rather than configure generation time
so that we handle $(datarootdir) setting properly.
Diffstat (limited to 'sim/moxie')
-rw-r--r-- | sim/moxie/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/moxie/Makefile.in b/sim/moxie/Makefile.in index c33b3b6..6671389 100644 --- a/sim/moxie/Makefile.in +++ b/sim/moxie/Makefile.in @@ -17,7 +17,7 @@ ## COMMON_PRE_CONFIG_FRAG -dtbdir = @datadir@/gdb/dtb +dtbdir = $(datadir)/gdb/dtb SIM_OBJS = \ $(SIM_NEW_COMMON_OBJS) \ |