Skip to content

Commit 34ec4ec

Browse files
author
Igor Drozdov
committed
Merge branch 'fix-make-install' into 'main'
Fix make install copying the wrong binaries See merge request gitlab-org/gitlab-shell!664
2 parents 44c6683 + ae2081f commit 34ec4ec

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Makefile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ install: compile
6666
mkdir -p $(DESTDIR)$(PREFIX)/bin/
6767
install -m755 bin/check $(DESTDIR)$(PREFIX)/bin/check
6868
install -m755 bin/gitlab-shell $(DESTDIR)$(PREFIX)/bin/gitlab-shell
69-
install -m755 bin/gitlab-shell $(DESTDIR)$(PREFIX)/bin/gitlab-shell-authorized-keys-check
70-
install -m755 bin/gitlab-shell $(DESTDIR)$(PREFIX)/bin/gitlab-shell-authorized-principals-check
71-
install -m755 bin/gitlab-shell $(DESTDIR)$(PREFIX)/bin/gitlab-sshd
72-
69+
install -m755 bin/gitlab-shell-authorized-keys-check $(DESTDIR)$(PREFIX)/bin/gitlab-shell-authorized-keys-check
70+
install -m755 bin/gitlab-shell-authorized-principals-check $(DESTDIR)$(PREFIX)/bin/gitlab-shell-authorized-principals-check
71+
install -m755 bin/gitlab-sshd $(DESTDIR)$(PREFIX)/bin/gitlab-sshd

0 commit comments

Comments
 (0)