diff options
| author | Mattias Andrée <m@maandree.se> | 2025-02-08 20:50:00 +0100 | 
|---|---|---|
| committer | Mattias Andrée <m@maandree.se> | 2025-02-08 20:50:00 +0100 | 
| commit | 718c482c4231ed5e6ece70506e2b763122f7f37b (patch) | |
| tree | 8671f5f2a6084083da8730d6b7c56480d09674d1 /Makefile | |
| parent | Add SSHEXEC_SSH (diff) | |
| download | sshexec-718c482c4231ed5e6ece70506e2b763122f7f37b.tar.gz sshexec-718c482c4231ed5e6ece70506e2b763122f7f37b.tar.bz2 sshexec-718c482c4231ed5e6ece70506e2b763122f7f37b.tar.xz | |
Fix makefile install rule
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
| -rw-r--r-- | Makefile | 3 | 
1 files changed, 1 insertions, 2 deletions
| @@ -24,13 +24,12 @@ install: sshexec  	test ! -d "$(DESTDIR)$(PREFIX)/bin/sshcd"  	ln -sf -- sshexec "$(DESTDIR)$(PREFIX)/bin/sshcd"  	cp -- sshexec.1 "$(DESTDIR)$(MANPREFIX)/man1/" -	cp -- sshcd "$(DESTDIR)$(PREFIX)/bin/"  	cp -- sshcd.1 "$(DESTDIR)$(MANPREFIX)/man1/"  uninstall:  	-rm -f -- "$(DESTDIR)$(PREFIX)/bin/sshexec" -	-rm -f -- "$(DESTDIR)$(MANPREFIX)/man1/sshexec.1"  	-rm -f -- "$(DESTDIR)$(PREFIX)/bin/sshcd" +	-rm -f -- "$(DESTDIR)$(MANPREFIX)/man1/sshexec.1"  	-rm -f -- "$(DESTDIR)$(MANPREFIX)/man1/sshcd.1"  clean: | 
