From c1229b756505bd45eee0953ffd6b2dc578fb616e Mon Sep 17 00:00:00 2001 From: Huang Rui Date: Sat, 18 Jan 2020 13:52:58 +0800 Subject: [PATCH] [5/20]tgt-vlog95:Remove useless $(INSTALL_DOC) fix install timestamp check and Remove useless $(INSTALL_DOC) Fix bug: https://bugs.gentoo.org/705412 Fix bug: https://github.com/gentoo/gentoo/pull/14096 Related: https://github.com/steveicarus/iverilog/pull/294 Signed-off-by: Huang Rui --- tgt-vlog95/Makefile.in | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/tgt-vlog95/Makefile.in b/tgt-vlog95/Makefile.in index 609a0765f..59239b174 100644 --- a/tgt-vlog95/Makefile.in +++ b/tgt-vlog95/Makefile.in @@ -81,18 +81,17 @@ endif vlog95.tgt: $O $(TGTDEPLIBS) $(CC) @shared@ $(LDFLAGS) -o $@ $O -lm $(TGTLDFLAGS) -install: all installdirs $(libdir)/ivl$(suffix)/vlog95.tgt $(INSTALL_DOC) $(libdir)/ivl$(suffix)/vlog95.conf $(libdir)/ivl$(suffix)/vlog95-s.conf +install: all installdirs installfiles -$(libdir)/ivl$(suffix)/vlog95.tgt: ./vlog95.tgt +F = ./vlog95.tgt \ + $(srcdir)/vlog95.conf \ + $(srcdir)/vlog95-s.conf + +installfiles: $(F) installdirs $(INSTALL_PROGRAM) ./vlog95.tgt "$(DESTDIR)$(libdir)/ivl$(suffix)/vlog95.tgt" - -$(libdir)/ivl$(suffix)/vlog95.conf: $(srcdir)/vlog95.conf $(INSTALL_DATA) $(srcdir)/vlog95.conf "$(DESTDIR)$(libdir)/ivl$(suffix)/vlog95.conf" - -$(libdir)/ivl$(suffix)/vlog95-s.conf: $(srcdir)/vlog95-s.conf $(INSTALL_DATA) $(srcdir)/vlog95-s.conf "$(DESTDIR)$(libdir)/ivl$(suffix)/vlog95-s.conf" - installdirs: $(srcdir)/../mkinstalldirs $(srcdir)/../mkinstalldirs "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)/ivl$(suffix)"