25 lines
693 B
Plaintext
25 lines
693 B
Plaintext
$NetBSD: patch-ab,v 1.2 2016/04/01 19:18:23 jperkin Exp $
|
|
|
|
DESTDIR support
|
|
|
|
--- Makefile.in.orig 2004-10-20 01:20:54.000000000 +0000
|
|
+++ Makefile.in
|
|
@@ -42,7 +42,7 @@ CFLAGS = @CFLAGS@
|
|
CPPFLAGS = @CPPFLAGS@
|
|
LDFLAGS = @LDFLAGS@
|
|
|
|
-prefix = @prefix@
|
|
+prefix = $(DESTDIR)@prefix@
|
|
exec_prefix = @exec_prefix@
|
|
|
|
# The directory for installing executable programs that users can run.
|
|
@@ -59,7 +59,7 @@ datadir = $(prefix)/share
|
|
elispdir = $(datadir)/emacs/site-lisp
|
|
|
|
# Where to install the manual pages.
|
|
-man1dir = $(prefix)/man/man1
|
|
+man1dir = $(DESTDIR)@mandir@/man1
|
|
# Prefix/suffix for each installed man page, normally empty or `g'.
|
|
man1prefix = $(binprefix)
|
|
man1suffix = $(binsuffix)
|