Skip to content

Commit

Permalink
Merge pull request #3 from joe-lawrence/install-set-modes
Browse files Browse the repository at this point in the history
Makefile: set install permission modes
  • Loading branch information
julien-thierry authored Nov 16, 2020
2 parents c7f2ffb + 73f6d5c commit 8948b32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ all: $(TARGETS)

install: $(TARGETS)
install -d $(MANDIR)
install man/dnf.kpatch.8.gz $(MANDIR)
install -m 644 man/dnf.kpatch.8.gz $(MANDIR)
install -d $(CONFDIR)
install conf/kpatch.conf $(CONFDIR)
install -m 644 conf/kpatch.conf $(CONFDIR)
install -d $(DNFPLUGINDIR)
install kpatch.py $(DNFPLUGINDIR)
install -m 644 kpatch.py $(DNFPLUGINDIR)

%.gz: %
gzip --keep $^

0 comments on commit 8948b32

Please sign in to comment.