From: Joel Brobecker Date: Thu, 14 Mar 2013 23:35:45 +0000 (+0000) Subject: Fix erc32 simulator out-of-tree build failure. X-Git-Tag: gdb_7_6-2013-04-26-release~105 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ef4481f3422488a0e0efdd9af0706ceb989294d2;p=thirdparty%2Fbinutils-gdb.git Fix erc32 simulator out-of-tree build failure. sim/erc32/ChangeLog: * Makefile.in: Include build directory in search path to find config.h --- diff --git a/sim/erc32/ChangeLog b/sim/erc32/ChangeLog index 4ecac22590a..44452df463b 100644 --- a/sim/erc32/ChangeLog +++ b/sim/erc32/ChangeLog @@ -1,3 +1,8 @@ +2013-03-14 Joel Sherrill + + * Makefile.in: Include build directory in search path to find + config.h + 2012-08-16 Nick Clifton * end.c: Include config.h before system header files. diff --git a/sim/erc32/Makefile.in b/sim/erc32/Makefile.in index c03121c0ec3..7e95a675b2b 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