31 lines
927 B
Diff
31 lines
927 B
Diff
From f8d4b1ea925789bca1aa6261017d63f5efa95c0f Mon Sep 17 00:00:00 2001
|
|
From: Cody P Schafer <dev@codyps.com>
|
|
Date: Mon, 2 Mar 2015 13:34:59 -0500
|
|
Subject: [PATCH 06/10] mk/install: use disable-rewrite-paths
|
|
|
|
This stops the install scripts from doing work we've already handled.
|
|
|
|
Path rewriting is only useful for prepackaged binary installers.
|
|
---
|
|
mk/install.mk | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/mk/install.mk b/mk/install.mk
|
|
index d2e5449..e67650b 100644
|
|
--- a/mk/install.mk
|
|
+++ b/mk/install.mk
|
|
@@ -12,7 +12,9 @@ RUN_INSTALLER = cd tmp/empty_dir && \
|
|
sh ../../tmp/dist/$(1)/install.sh \
|
|
--prefix="$(DESTDIR)$(CFG_PREFIX)" \
|
|
--libdir="$(DESTDIR)$(CFG_LIBDIR)" \
|
|
- --mandir="$(DESTDIR)$(CFG_MANDIR)"
|
|
+ --mandir="$(DESTDIR)$(CFG_MANDIR)" \
|
|
+ "$(MAYBE_DISABLE_VERIFY)" \
|
|
+ --disable-rewrite-paths
|
|
|
|
install:
|
|
ifeq (root user, $(USER) $(patsubst %,user,$(SUDO_USER)))
|
|
--
|
|
2.10.0
|
|
|