mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-09 20:40:13 -04:00
20 lines
702 B
Plaintext
20 lines
702 B
Plaintext
$NetBSD: patch-aa,v 1.7 2014/01/09 11:16:18 jperkin Exp $
|
|
|
|
Fix path to config file.
|
|
|
|
--- Makefile.orig 2006-06-12 19:45:57.000000000 +0000
|
|
+++ Makefile
|
|
@@ -1,10 +1,10 @@
|
|
include version
|
|
|
|
DESTDIR=/
|
|
-CONFIG_FILE=$(DESTDIR)/etc/multitail.conf
|
|
+CONFIG_FILE=${PKG_SYSCONFDIR}/multitail.conf
|
|
|
|
DEBUG=-g # -D_DEBUG -W -pedantic # -pg #-fprofile-arcs
|
|
-LDFLAGS=-lpanel -lncurses -lutil -lm $(DEBUG)
|
|
+LDFLAGS+=-lpanel -lncurses -lutil -lm $(DEBUG)
|
|
CFLAGS+=-D`uname` -O2 -Wall -DVERSION=\"$(VERSION)\" $(DEBUG) -DCONFIG_FILE=\"$(CONFIG_FILE)\"
|
|
|
|
OBJS=utils.o mt.o error.o my_pty.o term.o scrollback.o help.o mem.o cv.o selbox.o stripstring.o color.o misc.o ui.o exec.o diff.o config.o cmdline.o globals.o
|