diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2023-09-07 22:09:15 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2023-09-07 22:09:21 +0200 |
commit | 90cefe0fe22dff1cf8a4995eba59e3016f4e6a6b (patch) | |
tree | 8c8d8f03c4123096b3d64ba9154745027a9b4259 | |
parent | cb42f5b2d244268316676141d74680f22cdda032 (diff) | |
download | vendor_replicant-scripts-main.tar.gz vendor_replicant-scripts-main.tar.bz2 vendor_replicant-scripts-main.zip |
replicant_prepare_patch.py: Makefile: simplify installHEADreplicant-6.0mastermain
[Joonas Kylmälä]: Idea for the patch
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r-- | patches/Makefile | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/patches/Makefile b/patches/Makefile index dc90c8d..30c88ce 100644 --- a/patches/Makefile +++ b/patches/Makefile @@ -3,13 +3,8 @@ INSTALL ?= install .PHONY: install install: - $(INSTALL) -D $(DESTDIR)/bin - $(INSTALL) replicant_prepare_patch.py -t $(DESTDIR)/bin - - $(INSTALL) -D $(DESTDIR)/share/doc/vendor_replicant-scripts/ - $(INSTALL) COPYING \ - -t $(DESTDIR)/share/doc/vendor_replicant-scripts/ - $(INSTALL) README \ - -t $(DESTDIR)/share/doc/vendor_replicant-scripts/ - $(INSTALL) replicant_prepare_patch.conf \ - -t $(DESTDIR)/share/doc/vendor_replicant-scripts/ + $(INSTALL) -D $(DESTDIR)/bin replicant_prepare_patch.py + $(INSTALL) -D $(DESTDIR)/share/doc/vendor_replicant-scripts/ COPYING + $(INSTALL) -D $(DESTDIR)/share/doc/vendor_replicant-scripts/ README + $(INSTALL) -D $(DESTDIR)/share/doc/vendor_replicant-scripts/ \ + replicant_prepare_patch.conf |