diff options
author | Frank Ch. Eigler <fche@redhat.com> | 2000-03-07 15:32:49 +0000 |
---|---|---|
committer | Frank Ch. Eigler <fche@redhat.com> | 2000-03-07 15:32:49 +0000 |
commit | 997b9447b72346f209bcd171e922ca25640ebd9a (patch) | |
tree | 858f0660905d582c1419fac178e4c215bcf08659 /sim/erc32 | |
parent | 7a9a235ef82df47033887837d4773ac2209471fb (diff) | |
download | gdb-997b9447b72346f209bcd171e922ca25640ebd9a.tar.gz |
* build fix
2000-03-07 Frank Ch. Eigler <fche@redhat.com>
From John Dallaway <jld@redhat.co.uk>:
* Makefile.in (install-sis): Add $(EXEEXT) for Windows host.
Diffstat (limited to 'sim/erc32')
-rw-r--r-- | sim/erc32/ChangeLog | 5 | ||||
-rw-r--r-- | sim/erc32/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/sim/erc32/ChangeLog b/sim/erc32/ChangeLog index 51934913c5a..14ea3a80390 100644 --- a/sim/erc32/ChangeLog +++ b/sim/erc32/ChangeLog @@ -1,3 +1,8 @@ +2000-03-07 Frank Ch. Eigler <fche@redhat.com> + + From John Dallaway <jld@redhat.co.uk>: + * Makefile.in (install-sis): Add $(EXEEXT) for Windows host. + 2000-03-03 Jonathan Larmour <jlarmour@redhat.co.uk> * func.c (buffer_read_memory): Change type of size to unsigned to diff --git a/sim/erc32/Makefile.in b/sim/erc32/Makefile.in index 260641aa8fe..845815a174e 100644 --- a/sim/erc32/Makefile.in +++ b/sim/erc32/Makefile.in @@ -53,7 +53,7 @@ end.h: end # Copy the files into directories where they will be run. install-sis: installdirs n=`echo sis | sed '$(program_transform_name)'`; \ - $(INSTALL_PROGRAM) sis $(bindir)/$$n + $(INSTALL_PROGRAM) sis$(EXEEXT) $(bindir)/$$n$(EXEEXT) clean-sis: rm -f sis end end.h |