From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 31699139694 for ; Tue, 30 May 2017 17:14:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B8EF21C07B; Tue, 30 May 2017 17:14:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 38CE921C07B for ; Tue, 30 May 2017 17:14:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1D2F6341725 for ; Tue, 30 May 2017 17:14:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 813DD7459 for ; Tue, 30 May 2017 17:14:12 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1495737970.6f049fdf1b718d0c65f006e3cc9254ac55bc91c4.ulm@gentoo> Subject: [gentoo-commits] proj/pms:master commit in: / X-VCS-Repository: proj/pms X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 6f049fdf1b718d0c65f006e3cc9254ac55bc91c4 X-VCS-Branch: master Date: Tue, 30 May 2017 17:14:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 98cfa754-a5aa-4412-a0bc-1cec13ab37e1 X-Archives-Hash: b3101c5071e4e1c913209a4f10f1cbdd commit: 6f049fdf1b718d0c65f006e3cc9254ac55bc91c4 Author: Ulrich Müller gentoo org> AuthorDate: Thu May 25 18:46:10 2017 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu May 25 18:46:10 2017 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=6f049fdf Makefile: Fix sed regexp. Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a9666dd..74b6439 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ pms.html: $(LATEXFILES) pms.bbl vc.tex LC_ALL=C sed -i -e '/ /{N;N;s/\( \)\([0-9A-Z.]\+\)[ \n]/\2\1/}' $@ + LC_ALL=C sed -i -e '/ /{N;N;s/\( \)\([0-9A-Z.]\+\)[ \n]\+/\2\1/}' $@ @# remove redundant span elements LC_ALL=C sed -i -e ':x;/]*\)\?$$/{N;bx;};:y;s/\(]*>\)\([^<]*\)<\/span>\1/\1\2/;ty' $@