aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/Makefile.inc
diff options
context:
space:
mode:
authorDavid Keller <david.keller@enyx.fr>2016-08-23 18:23:57 +0200
committerDavid Keller <david.keller@enyx.fr>2016-08-23 18:23:57 +0200
commit99a34fb7a2560143cca27c46ce76325e62636623 (patch)
tree7d81b702e711fa497eae5e03c44bf1bd8ab33060 /libraries/Makefile.inc
parentffc92a8cd7e71cc8c87be28580bd2fe0fbda0095 (diff)
downloadghdl-99a34fb7a2560143cca27c46ce76325e62636623.tar.gz
ghdl-99a34fb7a2560143cca27c46ce76325e62636623.tar.bz2
ghdl-99a34fb7a2560143cca27c46ce76325e62636623.zip
Fix synopsys V08 library that was missing std_logic_1164-body.o.
The objects from IEEE_SRCS were looked while objects from IEEE08_SRCS were built. Signed-off-by: David Keller <david.keller@enyx.fr>
Diffstat (limited to 'libraries/Makefile.inc')
-rw-r--r--libraries/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/Makefile.inc b/libraries/Makefile.inc
index 7308fa8e5..fb2d14913 100644
--- a/libraries/Makefile.inc
+++ b/libraries/Makefile.inc
@@ -296,7 +296,7 @@ synopsys.v08: $(ANALYZE_DEP) $(LIB08_DIR) $(SYNOPSYS08_SRCS) ieee.v08 force
cd $(SYN08_DIR); \
$(CP) ../ieee/ieee-obj08.cf .; \
test x$(VHDLLIBS_COPY_OBJS) = "xno" || \
- for i in $(IEEE_SRCS) $(MATH_SRCS) $(VITAL2000_SRCS); do \
+ for i in $(IEEE08_SRCS) $(VITAL2000_SRCS); do \
b=`basename $$i .vhdl`; \
if [ -f ../ieee/$$b.o ]; then \
$(LN) ../ieee/$$b.o $$b.o || exit 1; \