diff options
author | fcambus <fcambus@pkgsrc.org> | 2020-01-28 13:23:32 +0000 |
---|---|---|
committer | fcambus <fcambus@pkgsrc.org> | 2020-01-28 13:23:32 +0000 |
commit | fe1ec4c47038a4a7f11624d73b45ca44d666a432 (patch) | |
tree | c1adfffe0158fcffae7783fa6be25534caec6e17 /editors/tweak/patches/patch-Makefile | |
parent | 27da5f46d8fe35c0989cdfc0d13a1a7e4f794c61 (diff) | |
download | pkgsrc-fe1ec4c47038a4a7f11624d73b45ca44d666a432.tar.gz |
tweak: update to 3.02.
ChangeLog:
- Build the HTML man page in the build script.
- Avoid buffer overflow with really long filenames.
- Fix missing argument to 'bad option' message.
- Remove the version number from the Tweak status bar.
- Increase the size of the 'message' buffer, which is currently
overflowing on really big files.
- Prevent obvious NULL dereference if you paste before cutting or copying.
- Fix memory overwrite when increasing display width in mid-editing.
Diffstat (limited to 'editors/tweak/patches/patch-Makefile')
-rw-r--r-- | editors/tweak/patches/patch-Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/tweak/patches/patch-Makefile b/editors/tweak/patches/patch-Makefile index 43b7af2422c..c533fdf8066 100644 --- a/editors/tweak/patches/patch-Makefile +++ b/editors/tweak/patches/patch-Makefile @@ -1,15 +1,15 @@ -$NetBSD: patch-Makefile,v 1.3 2016/04/01 11:38:57 jperkin Exp $ +$NetBSD: patch-Makefile,v 1.4 2020/01/28 13:23:32 fcambus Exp $ DESTDIR and curses support. ---- Makefile.orig 2006-05-18 08:27:43.000000000 +0000 +--- Makefile.orig 2016-03-22 21:12:51.000000000 +0000 +++ Makefile @@ -22,9 +22,10 @@ LINK := gcc LFLAGS := LIBS := +DESTDIR= - PREFIX=/usr/local + PREFIX=$(DESTDIR)/usr/local -BINDIR=$(PREFIX)/bin -MANDIR=$(PREFIX)/man/man1 +BINDIR=$(DESTDIR)$(PREFIX)/bin |