summarylogtreecommitdiffstats
path: root/make-destdir.patch
diff options
context:
space:
mode:
authorArti Zirk2021-02-18 12:42:56 +0200
committerArti Zirk2021-02-18 12:54:09 +0200
commit2713c6b804e3a5e31ee2e8f18adf0c1bf9367e85 (patch)
tree4630bbc41e65e5471ef2372aceef2d6132b1b54f /make-destdir.patch
parent4f9993dc9bc27e9dd63846418c4a024f9c99fc55 (diff)
downloadaur-2713c6b804e3a5e31ee2e8f18adf0c1bf9367e85.tar.gz
Cleanup and add shell completions
Diffstat (limited to 'make-destdir.patch')
-rw-r--r--make-destdir.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/make-destdir.patch b/make-destdir.patch
deleted file mode 100644
index 3109f866bb4c..000000000000
--- a/make-destdir.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/Makefile b/Makefile
-index 1239b9f..764bd65 100644
---- a/Makefile
-+++ b/Makefile
-@@ -15,9 +15,9 @@ SHARE = share
-
- # Install variables:
- PREFIX ?= /usr/local
--INSTALL_LIB ?= $(shell git --exec-path)
-+INSTALL_LIB ?= $(DESTDIR)$(shell git --exec-path)
- INSTALL_EXT ?= $(INSTALL_LIB)/$(NAME).d
--INSTALL_MAN1 ?= $(PREFIX)/share/man/man1
-+INSTALL_MAN1 ?= $(DESTDIR)$(PREFIX)/share/man/man1
-
- # Basic targets:
- default: help
-@@ -36,6 +36,7 @@ test:
-
- # Install support:
- install:
-+ install -C -d -m 0755 $(INSTALL_LIB)/
- install -C -m 0755 $(LIB) $(INSTALL_LIB)/
- install -C -d -m 0755 $(INSTALL_EXT)/
- install -C -m 0755 $(EXTS) $(INSTALL_EXT)/