summaryrefslogtreecommitdiff
path: root/misc/screen/patches
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/patches
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/patches')
-rw-r--r--misc/screen/patches/patch-aa17
1 files changed, 13 insertions, 4 deletions
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...