Without that fix, the install target will fail if a file named install is present in the same directory than the Makefile.
Signed-off-by: Denis 'GNUtoo' Carikli <[email protected]> --- patches/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/patches/Makefile b/patches/Makefile index a22a5fc..64a3f64 100644 --- a/patches/Makefile +++ b/patches/Makefile @@ -1,5 +1,6 @@ DESTDIR ?= /usr/local/bin INSTALL ?= install +.PHONY: install install: $(INSTALL) -m 755 replicant_prepare_patch.py -t $(DESTDIR) -- 2.30.1 _______________________________________________ Replicant mailing list [email protected] https://lists.osuosl.org/mailman/listinfo/replicant
