# HG changeset patch # User Matt Johnston # Date 1095768860 0 # Node ID c56d40d54538e289ce3f2931169c8c69fb6b47f0 # Parent 9c372a039532c4f6b6e340b990e6fbba5a0c4ecb use inst_ rather than inst, so it doesn't try to install "all". diff -r 9c372a039532 -r c56d40d54538 Makefile.in --- 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)