Hi,

Denis 'GNUtoo' Carikli via Replicant:
.PHONY: install
  install:
+       $(INSTALL) -d $(DESTDIR)

On my machine running this command seems to modify the DESTDIR permissions. To avoid changing the user's directory permissions it seems like we could do instead of the line here:

        $(INSTALL) -m 755 replicant_prepare_patch.py -t $(DESTDIR)

something like this:

$(INSTALL) -m 755 -D replicant_prepare_patch.py $(DESTDIR)/replicant_prepare_patch.py

(also no need then for the other install command).

-Joonas
_______________________________________________
Replicant mailing list
[email protected]
https://lists.osuosl.org/mailman/listinfo/replicant

Reply via email to