diff options
author | Tristan Gingold <tgingold@free.fr> | 2018-11-24 07:35:30 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2018-11-24 07:35:30 +0100 |
commit | 534fd65645a676181f0500e8544fc6beebb93d54 (patch) | |
tree | e8063ce944790de5915f4cab003d5a4e859692d9 | |
parent | 97e5f72097d622d3d09f1863af4b10a521c91669 (diff) | |
download | ghdl-534fd65645a676181f0500e8544fc6beebb93d54.tar.gz ghdl-534fd65645a676181f0500e8544fc6beebb93d54.tar.bz2 ghdl-534fd65645a676181f0500e8544fc6beebb93d54.zip |
make install: copy openieee library only if enabled.
Fix #701
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 5c2f73019..23df03818 100644 --- a/Makefile.in +++ b/Makefile.in @@ -428,7 +428,7 @@ install.vpi.local: all.vpi LIBSRC_DIR:=$(srcdir)/libraries LIBDST_DIR:=$(libdirsuffix) -VHDLLIB_SUBDIRS_COMMON= src/std src/synopsys src/openieee \ +VHDLLIB_SUBDIRS_COMMON= src/std src/synopsys \ std/v87 ieee/v87 synopsys/v87 \ std/v93 ieee/v93 synopsys/v93 \ std/v08 @@ -440,7 +440,7 @@ VHDLLIB_SUBDIRS_FULL= src/ieee src/vital95 src/vital2000 src/mentor \ ifeq ($(enable_openieee),false) VHDLLIB_SUBDIRS=$(VHDLLIB_SUBDIRS_COMMON) $(VHDLLIB_SUBDIRS_FULL) else -VHDLLIB_SUBDIRS=$(VHDLLIB_SUBDIRS_COMMON) +VHDLLIB_SUBDIRS=$(VHDLLIB_SUBDIRS_COMMON) src/openieee endif install.dirs: |