Introduction
Introduction Statistics Contact Development Disclaimer Help
make: fix rogue parameter in install target - sbase - suckless unix tools
git clone git://git.suckless.org/sbase
Log
Files
Refs
README
LICENSE
---
commit c31af02d2231704f54ec2286ad1a71dc9fe3bdff
parent 0a82a7d91a039b41f861e399a74da8f7073ed59f
Author: Quentin Rameau <[email protected]>
Date: Sun, 29 Oct 2023 09:57:15 +0100
make: fix rogue parameter in install target
Diffstat:
M Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git 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/
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.