57 lines
1.7 KiB
Diff
57 lines
1.7 KiB
Diff
From 8bb41c30cddb806a944fd3811d9c3e5ab9062d9c Mon Sep 17 00:00:00 2001
|
|
From: Thomas Woerner <twoerner@fedoraproject.org>
|
|
Date: Fri, 13 Jan 2012 15:12:33 -0500
|
|
Subject: [PATCH] build: Honor DESTDIR
|
|
|
|
Patch imported from Fedora.
|
|
|
|
Signed-off-by: Colin Walters <walters@verbum.org>
|
|
---
|
|
include/builddefs.in | 16 ++++++++--------
|
|
include/buildmacros | 2 +-
|
|
2 files changed, 9 insertions(+), 9 deletions(-)
|
|
|
|
diff --git a/include/builddefs.in b/include/builddefs.in
|
|
index 6df0f5a..575a6df 100644
|
|
--- a/include/builddefs.in
|
|
+++ b/include/builddefs.in
|
|
@@ -40,14 +40,14 @@ PKG_RELEASE = @pkg_release@
|
|
PKG_VERSION = @pkg_version@
|
|
PKG_PLATFORM = @pkg_platform@
|
|
PKG_DISTRIBUTION= @pkg_distribution@
|
|
-PKG_BIN_DIR = @bindir@
|
|
-PKG_SBIN_DIR = @sbindir@
|
|
-PKG_LIB_DIR = @libdir@@libdirsuffix@
|
|
-PKG_DEVLIB_DIR = @libexecdir@@libdirsuffix@
|
|
-PKG_INC_DIR = @includedir@/attr
|
|
-PKG_MAN_DIR = @mandir@
|
|
-PKG_DOC_DIR = @datadir@/doc/@pkg_name@
|
|
-PKG_LOCALE_DIR = @datadir@/locale
|
|
+PKG_BIN_DIR = $(DESTDIR)@bindir@
|
|
+PKG_SBIN_DIR = $(DESTDIR)@sbindir@
|
|
+PKG_LIB_DIR = $(DESTDIR)@libdir@@libdirsuffix@
|
|
+PKG_DEVLIB_DIR = $(DESTDIR)@libexecdir@@libdirsuffix@
|
|
+PKG_INC_DIR = $(DESTDIR)@includedir@/attr
|
|
+PKG_MAN_DIR = $(DESTDIR)@mandir@
|
|
+PKG_DOC_DIR = $(DESTDIR)@datadir@/doc/@pkg_name@-@pkg_version@
|
|
+PKG_LOCALE_DIR = $(DESTDIR)@datadir@/locale
|
|
|
|
CC = @cc@
|
|
AWK = @awk@
|
|
diff --git a/include/buildmacros b/include/buildmacros
|
|
index ab89182..9c4fd50 100644
|
|
--- a/include/buildmacros
|
|
+++ b/include/buildmacros
|
|
@@ -40,7 +40,7 @@ OBJECTS = $(ASFILES:.s=.o) \
|
|
$(LFILES:.l=.o) \
|
|
$(YFILES:%.y=%.tab.o)
|
|
|
|
-INSTALL = $(TOPDIR)/include/install-sh -o $(PKG_USER) -g $(PKG_GROUP)
|
|
+INSTALL = $(TOPDIR)/include/install-sh
|
|
|
|
SHELL = /bin/sh
|
|
IMAGES_DIR = $(TOPDIR)/all-images
|
|
--
|
|
1.7.6.4
|
|
|