diff options
author | Christian Cornelssen <ccorn@1tein.de> | 2018-05-21 09:43:20 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2018-05-21 18:55:18 +0200 |
commit | daf1cd37a4fc67aa959a575b24470ccdf2da61df (patch) | |
tree | 90ace65305dc133ec847a010707089846b940706 | |
parent | 7b24c5363ec400bc9e59b79f4b2d8b07a0208c18 (diff) | |
download | ghdl-daf1cd37a4fc67aa959a575b24470ccdf2da61df.tar.gz ghdl-daf1cd37a4fc67aa959a575b24470ccdf2da61df.tar.bz2 ghdl-daf1cd37a4fc67aa959a575b24470ccdf2da61df.zip |
Makefile.in: Use INSTALL_PROGRAM for anything with SOEXT
This sets x permissions. Without those, object loaders may complain,
as Cygwin does when running testsuite/gna/issue450.
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index a61189dde..70472a05e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -375,7 +375,7 @@ install.libghdlsynth.static: libghdlsynth.a install.libghdlsynth.include $(INSTALL_DATA) -p ghdlsynth.link $(DESTDIR)$(libdir)/ install.libghdlsynth.shared: libghdlsynth$(SOEXT) install.libghdlsynth.include - $(INSTALL_DATA) -p libghdlsynth$(SOEXT) $(DESTDIR)$(libdir)/ + $(INSTALL_PROGRAM) -p libghdlsynth$(SOEXT) $(DESTDIR)$(libdir)/ ################ ghwdump ################################################# @@ -411,13 +411,13 @@ libghdlvpi$(SOEXT): vpi_thunk.o all.vpi: libghdlvpi$(SOEXT) install.vpi: all.vpi install.dirs - $(INSTALL_DATA) -p libghdlvpi$(SOEXT) $(DESTDIR)$(libdir)/ + $(INSTALL_PROGRAM) -p libghdlvpi$(SOEXT) $(DESTDIR)$(libdir)/ $(INSTALL_DATA) -p $(GRTSRCDIR)/vpi_user.h $(DESTDIR)$(incdir)/ install.vpi.local: all.vpi $(MKDIR) -p include lib $(INSTALL_DATA) -p $(GRTSRCDIR)/vpi_user.h include/ - $(INSTALL_DATA) -p libghdlvpi$(SOEXT) lib/ + $(INSTALL_PROGRAM) -p libghdlvpi$(SOEXT) lib/ ################ Libraries ############################################### |