Subject: CVS commit: pkgsrc/mail/thunderbird-enigmail
From: Kamil Rytarowski
Date: 2015-12-30 05:37:27
Message id: 20151230043727.62083FC53@cvs.NetBSD.org

Log Message:
Correct sed(1) usage for NetBSD-6.x in the install stage

NetBSD-7.99.25
$ /usr/bin/sed -n '/.*<em:id>\(.*\)<\/em:id>.*/{s//\1/p;q}' install.rdf
{847b3a00-7ab1-11d4-8f02-006008948af5}
$ /usr/bin/sed -n '/.*<em:id>\(.*\)<\/em:id>.*/{s//\1/p;q;}' install.rdf
{847b3a00-7ab1-11d4-8f02-006008948af5}

NetBSD-6.1_STABLE
$ /usr/bin/sed -n '/.*<em:id>\(.*\)<\/em:id>.*/{s//\1/p;q}' install.rdf
sed: 1: "/.*<em:id>\(.*\)<\/em:i ...": extra characters at \ 
the end of q command
$ /usr/bin/sed -n '/.*<em:id>\(.*\)<\/em:id>.*/{s//\1/p;q;}' install.rdf
{847b3a00-7ab1-11d4-8f02-006008948af5}

Closes PR pkg/50264 by Hauke Fath
Solution suggested by David Holland

Files:
RevisionActionfile
1.5modifypkgsrc/mail/thunderbird-enigmail/Makefile.common