diff options
author | Joel Brobecker <brobecker@gnat.com> | 2013-03-14 23:33:57 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2013-03-14 23:33:57 +0000 |
commit | 7b7f7f41a805b454125cdc7ebea8c21d90d39b0f (patch) | |
tree | a438da043f258fcc9eff80b0bd5d265874f43aca /sim/erc32/Makefile.in | |
parent | 93c4ff1017a85d53e5c2da160e2a37d4ea4ee450 (diff) | |
download | gdb-7b7f7f41a805b454125cdc7ebea8c21d90d39b0f.zip gdb-7b7f7f41a805b454125cdc7ebea8c21d90d39b0f.tar.gz gdb-7b7f7f41a805b454125cdc7ebea8c21d90d39b0f.tar.bz2 |
Fix erc32 simulator out-of-tree build failure.
sim/erc32/ChangeLog:
* Makefile.in: Include build directory in search path to find
config.h
Diffstat (limited to 'sim/erc32/Makefile.in')
-rw-r--r-- | sim/erc32/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/erc32/Makefile.in b/sim/erc32/Makefile.in index c03121c..7e95a67 100644 --- a/sim/erc32/Makefile.in +++ b/sim/erc32/Makefile.in @@ -45,7 +45,7 @@ sis: sis.o $(SIS_OFILES) $(COMMON_OBJS) $(LIBDEPS) # There is AC_C_BIGENDIAN but it doesn't handle float endianness. # [Are int/float endians every different on a sparc?] end: $(srcdir)/end.c - $(CC_FOR_BUILD) $(srcdir)/end.c -o end + $(CC_FOR_BUILD) -I. $(srcdir)/end.c -o end end.h: end ./end > end.h |