Index: head/devel/automake/Makefile =================================================================== --- head/devel/automake/Makefile (revision 506869) +++ head/devel/automake/Makefile (revision 506870) @@ -1,31 +1,31 @@ # Created by: Ade Lovett # $FreeBSD$ PORTNAME= automake PORTVERSION= 1.16.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= GNU MAINTAINER= tijl@FreeBSD.org COMMENT= GNU Standards-compliant Makefile generator LICENSE= GPLv2+ GFDL LICENSE_COMB= multi LICENSE_FILE_GPLv2+ = ${WRKSRC}/COPYING LICENSE_FILE_GFDL= ${WRKSRC}/doc/fdl.texi BUILD_DEPENDS= autoconf>=2.69:devel/autoconf RUN_DEPENDS= autoconf>=2.69:devel/autoconf BUILD_VERSION= 1.16 PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} USES= cpe makeinfo perl5 tar:xz GNU_CONFIGURE= yes MAKE_ENV+= MAKEINFOFLAGS=--no-split INFO= automake automake-history CPE_VENDOR= gnu OPTIONS_DEFINE= DOCS .include Index: head/devel/automake/files/patch-bug31222 =================================================================== --- head/devel/automake/files/patch-bug31222 (nonexistent) +++ head/devel/automake/files/patch-bug31222 (revision 506870) @@ -0,0 +1,31 @@ +From a348d830659fffd2cfc42994524783b07e69b4b5 Mon Sep 17 00:00:00 2001 +From: Mathieu Lirzin +Date: Sun, 8 Jul 2018 23:41:42 +0200 +Subject: [PATCH] python: Don't use '\n' in sed substitution + +This change fixes automake bug#31222. + +On macOS, 'sed' interprets '\n' in the substitution text as the letter 'n' +instead of as a newline. + +* lib/am/python.am [?FIRST?] (am__pep3147_tweak): Use a space instead of '\n'. +* NEWS: Update. +--- + NEWS | 8 ++++++++ + lib/am/python.am | 2 +- + 2 files changed, 9 insertions(+), 1 deletion(-) + +--- lib/am/python.am.orig 2018-02-26 20:38:27 UTC ++++ lib/am/python.am +@@ -97,7 +97,7 @@ endif %?INSTALL% + if %?INSTALL% + + ?FIRST?am__pep3147_tweak = \ +-?FIRST? sed -e 's|\.py$$||' -e 's|[^/]*$$|&.*.pyc\n&.*.pyo|' ++?FIRST? sed -e 's|\.py$$||' -e 's|[^/]*$$|&.*.pyc &.*.pyo|' + + .PHONY uninstall-am: uninstall-%DIR%PYTHON + uninstall-%DIR%PYTHON: +-- +2.22.0 + Property changes on: head/devel/automake/files/patch-bug31222 ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property