From owner-svn-ports-all@FreeBSD.ORG Mon Nov 3 22:06:23 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7FF80235; Mon, 3 Nov 2014 22:06:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5206D166; Mon, 3 Nov 2014 22:06:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sA3M6NIW051823; Mon, 3 Nov 2014 22:06:23 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sA3M6NkK051822; Mon, 3 Nov 2014 22:06:23 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201411032206.sA3M6NkK051822@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Mon, 3 Nov 2014 22:06:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372127 - head/print/auctex/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Nov 2014 22:06:23 -0000 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); \ }