diff options
author | recht <recht@pkgsrc.org> | 2004-08-29 16:07:29 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2004-08-29 16:07:29 +0000 |
commit | 9ae9cb40d965df0023bb7fea531807de5e6dc428 (patch) | |
tree | 00c78b3f5bea51cf06661c7796e957d2aadc74d0 /comms/efax | |
parent | 8de3d5c4bd970b875392a5485f6929227105cd05 (diff) | |
download | pkgsrc-9ae9cb40d965df0023bb7fea531807de5e6dc428.tar.gz |
Don not use {head,tail} -n since it is not supported by some
implementations.
patch provided by Georg Schwarz in PR 26789
Diffstat (limited to 'comms/efax')
-rw-r--r-- | comms/efax/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/comms/efax/Makefile b/comms/efax/Makefile index 49f0b862a2a..97d81a5dd2a 100644 --- a/comms/efax/Makefile +++ b/comms/efax/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2004/04/11 06:14:32 snj Exp $ +# $NetBSD: Makefile,v 1.13 2004/08/29 16:07:29 recht Exp $ DISTNAME= efax-0.9 CATEGORIES= comms @@ -30,9 +30,9 @@ post-patch: # `fax' script so that the user doesn't need to edit the script itself # to set important variables. - ${HEAD} -n 5 ${WRKSRC}/fax.tmp > ${WRKSRC}/fax - ${TAIL} -n 649 ${WRKSRC}/fax.tmp >> ${WRKSRC}/fax - ${HEAD} -n 404 ${WRKSRC}/fax.tmp > ${WRKSRC}/efax.rc1 - ${TAIL} -n 402 ${WRKSRC}/efax.rc1 > ${WRKSRC}/efax.rc + ${HEAD} -5 ${WRKSRC}/fax.tmp > ${WRKSRC}/fax + ${TAIL} -649 ${WRKSRC}/fax.tmp >> ${WRKSRC}/fax + ${HEAD} -404 ${WRKSRC}/fax.tmp > ${WRKSRC}/efax.rc1 + ${TAIL} -402 ${WRKSRC}/efax.rc1 > ${WRKSRC}/efax.rc .include "../../mk/bsd.pkg.mk" |