]> andersk Git - openssh.git/commitdiff
- (dtucker) [Makefile.in] Add a install-nosysconf target for installing the
authordtucker <dtucker>
Fri, 25 Feb 2005 23:12:38 +0000 (23:12 +0000)
committerdtucker <dtucker>
Fri, 25 Feb 2005 23:12:38 +0000 (23:12 +0000)
   binaries without the config files.  Primarily useful for packaging.
   Patch from phil at usc.edu.  ok djm@

ChangeLog
Makefile.in

index 79b2d47269d3c95936ce651e8a163b9827d08fc3..aba1cc77d86a7574c459a489634c7d2860d5407b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
  - (dtucker) [acconfig.h configure.ac openbsd-compat/bsd-misc.{c,h}]
    Remove SETGROUPS_NOOP, was only used by Cygwin, which doesn't need it any
    more.  Patch from vinschen at redhat.com.
+ - (dtucker) [Makefile.in] Add a install-nosysconf target for installing the
+   binaries without the config files.  Primarily useful for packaging.
+   Patch from phil at usc.edu.  ok djm@
 
 20050224
  - (djm) [configure.ac] in_addr_t test needs sys/types.h too
index 734c0404f4deae0cf57245c0bf7bb36b9b8a5686..b006865cee212b87f392201febe2ee16e24dcbe0 100644 (file)
@@ -230,8 +230,9 @@ distprep: catman-do
        -rm -rf autom4te.cache
        (cd scard && $(MAKE) -f Makefile.in distprep)
 
-install: $(CONFIGFILES) ssh_prng_cmds.out $(MANPAGES) $(TARGETS) install-files host-key check-config
-install-nokeys: $(CONFIGFILES) ssh_prng_cmds.out $(MANPAGES) $(TARGETS) install-files
+install: $(CONFIGFILES) ssh_prng_cmds.out $(MANPAGES) $(TARGETS) install-files install-sysconf host-key check-config
+install-nokeys: $(CONFIGFILES) ssh_prng_cmds.out $(MANPAGES) $(TARGETS) install-files install-sysconf
+install-nosysconf: $(CONFIGFILES) ssh_prng_cmds.out $(MANPAGES) $(TARGETS) install-files
 
 check-config:
        -$(DESTDIR)$(sbindir)/sshd -t -f $(DESTDIR)$(sysconfdir)/sshd_config
@@ -281,6 +282,8 @@ install-files: scard-install
        ln -s ./ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
        -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
        ln -s ./ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
+
+install-sysconf:
        if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \
                $(srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir); \
        fi
This page took 0.045642 seconds and 5 git commands to generate.