Mercurial > dropbear
changeset 132:c56d40d54538
use inst_ rather than inst, so it doesn't try to install "all".
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 21 Sep 2004 12:14:20 +0000 |
parents | 9c372a039532 |
children | b4cfe976c8e1 |
files | Makefile.in |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile.in Tue Sep 21 11:42:03 2004 +0000 +++ b/Makefile.in Tue Sep 21 12:14:20 2004 +0000 @@ -114,7 +114,7 @@ strip: $(TARGETS) $(STRIP) $(addsuffix $(EXEEXT), $(addprefix $(SPREFIX), $(TARGETS))) -install: $(addprefix inst, $(TARGETS)) +install: $(addprefix inst_, $(TARGETS)) installdropbearmulti: insdbmulti $(addprefix insmulti, $(PROGRAMS)) @@ -133,13 +133,13 @@ -ln -s $(DESTDIR)$(bindir)/$(SPREFIX)dropbearmulti$(EXEEXT) $(DESTDIR)$(bindir)/$(SPREFIX)$*$(EXEEXT) # dropbear should go in sbin, so it needs a seperate rule -instdropbear: dropbear +inst_dropbear: dropbear $(INSTALL) -d -m 755 $(DESTDIR)$(sbindir) $(INSTALL) -m 755 $(SPREFIX)dropbear$(EXEEXT) $(DESTDIR)$(sbindir) -chown root $(DESTDIR)$(sbindir)/$(SPREFIX)dropbear$(EXEEXT) -chgrp 0 $(DESTDIR)$(sbindir)/$(SPREFIX)dropbear$(EXEEXT) -inst%: $* +inst_%: $* $(INSTALL) -d -m 755 $(DESTDIR)$(bindir) $(INSTALL) -m 755 $(SPREFIX)$*$(EXEEXT) $(DESTDIR)$(bindir) -chown root $(DESTDIR)$(bindir)/$(SPREFIX)$*$(EXEEXT)