Date: Mon, 3 Nov 2014 22:06:23 +0000 (UTC) From: Hiroki Sato <hrs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372127 - head/print/auctex/files Message-ID: <201411032206.sA3M6NkK051822@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: hrs Date: Mon Nov 3 22:06:22 2014 New Revision: 372127 URL: https://svnweb.freebsd.org/changeset/ports/372127 QAT: https://qat.redports.org/buildarchive/r372127/ Log: Fix build with old make. Reported by: Scott Allendorf Modified: head/print/auctex/files/patch-doc-Makefile.in Modified: head/print/auctex/files/patch-doc-Makefile.in ============================================================================== --- head/print/auctex/files/patch-doc-Makefile.in Mon Nov 3 21:56:18 2014 (r372126) +++ head/print/auctex/files/patch-doc-Makefile.in Mon Nov 3 22:06:22 2014 (r372127) @@ -1,6 +1,6 @@ --- doc/Makefile.in.orig 2014-10-30 04:21:17.000000000 +0900 -+++ doc/Makefile.in 2014-11-03 23:20:17.000000000 +0900 -@@ -38,18 +38,18 @@ ++++ doc/Makefile.in 2014-11-04 07:02:49.000000000 +0900 +@@ -38,18 +38,19 @@ # If `texi2html' is not available, use `makeinfo' when possible. Set the ToC # file accordingly. Actually, makeinfo >= 5 is needed, but we don't check the # version. @@ -16,11 +16,12 @@ - TEXI2HTML_TOC=auctex_toc.html - endif -endif -+.if "@TEXI2HTML@" == ":" ++COLON=: ++.if ${COLON} != "@TEXI2HTML@" +TEXI2HTML=@TEXI2HTML@ +TEXI2HTML_TOC=auctex_toc.html +.else -+. if "@MAKEINFO@" == ":" ++. if ${COLON} != "@MAKEINFO@" +TEXI2HTML=@MAKEINFO@ --html +TEXI2HTML_TOC=index.html +. else @@ -31,7 +32,7 @@ TEXI2DVI=@TEXI2DVI@ TEXI2PDF=@TEXI2PDF@ MKINSTALLDIRS = ../mkinstalldirs -@@ -85,7 +85,11 @@ +@@ -85,7 +86,11 @@ done ; \ } @@ -43,7 +44,7 @@ extradist: html/$(TEXI2HTML_TOC) auctex.ps auctex.pdf tex-ref.ps tex-ref.pdf -@@ -125,6 +129,18 @@ +@@ -125,6 +130,18 @@ auctex.info: $(AUCTEXTEXIFILES) $(MAKEINFO) auctex.texi @@ -62,7 +63,7 @@ install-auctex: auctex.info tex-ref.pdf -$(MKINSTALLDIRS) $(DESTDIR)$(infodir) rm -f $(DESTDIR)$(infodir)/auctex $(DESTDIR)$(infodir)/auctex-* -@@ -140,6 +156,7 @@ +@@ -140,6 +157,7 @@ rm -f $(DESTDIR)$(docdir)/tex-ref.pdf; \ $(INSTALL_DATA) tex-ref.pdf $(DESTDIR)$(docdir); \ }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411032206.sA3M6NkK051822>