summaryrefslogtreecommitdiff
path: root/misc/screen
diff options
context:
space:
mode:
authoragc <agc@pkgsrc.org>1999-08-13 14:04:16 +0000
committeragc <agc@pkgsrc.org>1999-08-13 14:04:16 +0000
commitf36dfb025b4129c0419c160089bdfeed5a4619a6 (patch)
tree7ed37b49d9abf11955db33ca6c5851d1edcd80e9 /misc/screen
parent4dd52fe98255839918303066a5244b26a397bc5d (diff)
downloadpkgsrc-f36dfb025b4129c0419c160089bdfeed5a4619a6.tar.gz
Makefile.in file is incorrect - dollar signs must be escaped from
make(1), so that "$PATH" should actually be "$$PATH". Correct this, and regen patch-sum file accordingly.
Diffstat (limited to 'misc/screen')
-rw-r--r--misc/screen/files/patch-sum4
-rw-r--r--misc/screen/patches/patch-aa17
2 files changed, 15 insertions, 6 deletions
diff --git a/misc/screen/files/patch-sum b/misc/screen/files/patch-sum
index 737960f467b..bc2d31351d0 100644
--- a/misc/screen/files/patch-sum
+++ b/misc/screen/files/patch-sum
@@ -1,6 +1,6 @@
-$NetBSD: patch-sum,v 1.3 1999/08/10 17:43:55 tron Exp $
+$NetBSD: patch-sum,v 1.4 1999/08/13 14:04:16 agc Exp $
-MD5 (patch-aa) = 8e06f73eb8c0167051d17a71f0267ebb
+MD5 (patch-aa) = aa7ea3e8fe85944c0eb23d41d00881bb
MD5 (patch-ab) = 96bed78d46d5bab58f300a3c6dda1dba
MD5 (patch-ac) = b64706d3cce162a05421ee7bbded5d7d
MD5 (patch-ad) = d8635ceee1f95901b6084a432313e658
diff --git a/misc/screen/patches/patch-aa b/misc/screen/patches/patch-aa
index a957f9c908e..8dd36f0ad62 100644
--- a/misc/screen/patches/patch-aa
+++ b/misc/screen/patches/patch-aa
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.4 1999/08/10 09:18:02 agc Exp $
+$NetBSD: patch-aa,v 1.5 1999/08/13 14:04:16 agc Exp $
---- Makefile.in Mon Jun 23 17:05:42 1997
-+++ Makefile.in Mon Nov 3 00:06:51 1997
-@@ -20,7 +20,6 @@
+--- Makefile.in.orig Wed Aug 11 21:19:51 1999
++++ Makefile.in Fri Aug 13 14:56:14 1999
+@@ -21,7 +21,6 @@
ETCSCREENRC = `sed < config.h -n -e '/define ETCSCREENRC/s/^.*"\([^"]*\)"/\1/p'`
CC = @CC@
@@ -10,3 +10,12 @@ $NetBSD: patch-aa,v 1.4 1999/08/10 09:18:02 agc Exp $
LDFLAGS =
LIBS = @LIBS@
+@@ -84,7 +83,7 @@
+ install: installdirs install_bin
+ cd doc ; $(MAKE) install
+ -if [ -d /usr/lib/terminfo ]; then \
+- PATH="$PATH:/usr/5bin" tic ${srcdir}/terminfo/screeninfo.src; \
++ PATH="$$PATH:/usr/5bin" tic ${srcdir}/terminfo/screeninfo.src; \
+ chmod 644 /usr/lib/terminfo/s/screen*; \
+ fi
+ # Better do this by hand. E.g. under RCS...