summaryrefslogtreecommitdiff
path: root/comms
diff options
context:
space:
mode:
authorrecht <recht>2004-08-29 16:07:29 +0000
committerrecht <recht>2004-08-29 16:07:29 +0000
commit3ec4a2c31419b93262e811b662ac25197435b85e (patch)
tree00c78b3f5bea51cf06661c7796e957d2aadc74d0 /comms
parente2f80ad8e185768944155ca309b18df5ed92395e (diff)
downloadpkgsrc-3ec4a2c31419b93262e811b662ac25197435b85e.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')
-rw-r--r--comms/efax/Makefile10
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"