diff options
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rwxr-xr-x | ld/ldtemplate | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 608a437..4ff7772 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +Fri Oct 11 10:29:27 1991 Steve Chamberlain (steve at cygnus.com) + + * ldtemplate: include bfd.h before sysdep.h. + Fri Oct 11 04:24:45 1991 John Gilmore (gnu at cygnus.com) Restructure configuration scheme for bfd, binutils, ld. diff --git a/ld/ldtemplate b/ld/ldtemplate index b627935..2d161f0 100755 --- a/ld/ldtemplate +++ b/ld/ldtemplate @@ -35,9 +35,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define TARGET_IS_<TARGET> -#include "sysdep.h" -#include "bfd.h" +#include "bfd.h" +#include "sysdep.h" #include "ld.h" #include "config.h" #include "ldemul.h" |