commit c31af02d2231704f54ec2286ad1a71dc9fe3bdff
Author:     Quentin Rameau <quinq@fifth.space>
AuthorDate: Sun Oct 29 09:57:15 2023 +0100
Commit:     k0ga <Roberto E. Vargas Caballero k...@shike2.com>
CommitDate: Tue Nov 14 19:34:08 2023 +0100

    make: fix rogue parameter in install target

diff --git a/Makefile b/Makefile
index 8da0106..95bb21d 100644
--- a/Makefile
+++ b/Makefile
@@ -219,11 +219,11 @@ getconf.h:
        scripts/getconf.sh > $@
 
 install uninstall:
-       scripts/mkproto $@ $(DESTDIR)$(PREFIX) $(DESTDIR)$(MANPREFIX) proto
+       scripts/mkproto $(DESTDIR)$(PREFIX) $(DESTDIR)$(MANPREFIX) proto
        scripts/$@ proto
 
 sbase-box-install: sbase-box
-       scripts/mkproto $@ $(DESTDIR)$(PREFIX) $(DESTDIR)$(MANPREFIX) proto
+       scripts/mkproto $(DESTDIR)$(PREFIX) $(DESTDIR)$(MANPREFIX) proto
        scripts/$@ proto
        $(DESTDIR)$(PREFIX)/bin/sbase-box -i $(DESTDIR)$(PREFIX)/bin/
 

Reply via email to