View | Details | Raw Unified | Return to bug 245599 | Differences between
and this patch

Collapse All | Expand All

(-)devel/automake/Makefile (-2 / +1 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	automake
4
PORTNAME=	automake
5
PORTVERSION=	1.16.1
5
PORTVERSION=	1.16.2
6
PORTREVISION=	2
7
CATEGORIES=	devel
6
CATEGORIES=	devel
8
MASTER_SITES=	GNU
7
MASTER_SITES=	GNU
9
8
(-)devel/automake/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1528387628
1
TIMESTAMP = 1586784230
2
SHA256 (automake-1.16.1.tar.xz) = 5d05bb38a23fd3312b10aea93840feec685bdf4a41146e78882848165d3ae921
2
SHA256 (automake-1.16.2.tar.xz) = ccc459de3d710e066ab9e12d2f119bd164a08c9341ca24ba22c9adaa179eedd0
3
SIZE (automake-1.16.1.tar.xz) = 1534936
3
SIZE (automake-1.16.2.tar.xz) = 1545912
(-)devel/automake/files/patch-bug31222 (-31 lines)
Lines 1-31 Link Here
1
From a348d830659fffd2cfc42994524783b07e69b4b5 Mon Sep 17 00:00:00 2001
2
From: Mathieu Lirzin <mthl@gnu.org>
3
Date: Sun, 8 Jul 2018 23:41:42 +0200
4
Subject: [PATCH] python: Don't use '\n' in sed substitution
5
6
This change fixes automake bug#31222.
7
8
On macOS, 'sed' interprets '\n' in the substitution text as the letter 'n'
9
instead of as a newline.
10
11
* lib/am/python.am [?FIRST?] (am__pep3147_tweak): Use a space instead of '\n'.
12
* NEWS: Update.
13
---
14
 NEWS             | 8 ++++++++
15
 lib/am/python.am | 2 +-
16
 2 files changed, 9 insertions(+), 1 deletion(-)
17
18
--- lib/am/python.am.orig	2018-02-26 20:38:27 UTC
19
+++ lib/am/python.am
20
@@ -97,7 +97,7 @@ endif %?INSTALL%
21
 if %?INSTALL%
22
 
23
 ?FIRST?am__pep3147_tweak = \
24
-?FIRST?  sed -e 's|\.py$$||' -e 's|[^/]*$$|&.*.pyc\n&.*.pyo|'
25
+?FIRST?  sed -e 's|\.py$$||' -e 's|[^/]*$$|&.*.pyc &.*.pyo|'
26
 
27
 .PHONY uninstall-am: uninstall-%DIR%PYTHON
28
 uninstall-%DIR%PYTHON:
29
-- 
30
2.22.0
31

Return to bug 245599