]> andersk Git - openssh.git/commitdiff
[Makefile.in] quiet down install-files: and check-user:
authortim <tim>
Fri, 12 Jul 2002 16:04:06 +0000 (16:04 +0000)
committertim <tim>
Fri, 12 Jul 2002 16:04:06 +0000 (16:04 +0000)
ChangeLog
Makefile.in

index c0728444178b26b0d57806c3b00b56d9b29c63a1..16307707efd002eaca4b718d7d3ea9836da91dc4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+20020712
+ - (tim) [Makefile.in] quiet down install-files: and check-user:
+
 20020710
  - (tim) [contrib/cygwin/ssh-host-config] explicitely sets the permissions
    on /var/empty to 755 Patch by vinschen@redhat.com
index 3c642a4e639fd5abb2aef16cf82c074d7a106ce5..62c78a3b0b94d278a2e8b4cef14d107f86309eb1 100644 (file)
@@ -202,7 +202,7 @@ install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key check-user
 install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files
 
 check-user:
-       id $(SSH_PRIVSEP_USER) || \
+       @id $(SSH_PRIVSEP_USER) || \
                echo "WARNING: Privilege separation user \"$(SSH_PRIVSEP_USER)\" does not exist"
 
 scard-install:
@@ -253,17 +253,17 @@ install-files: scard-install
        if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \
                $(srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir); \
        fi
-       if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config ]; then \
+       @if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config ]; then \
                $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
        else \
                echo "$(DESTDIR)$(sysconfdir)/ssh_config already exists, install will not overwrite"; \
        fi
-       if [ ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
+       @if [ ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
                $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
        else \
                echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
        fi
-       if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
+       @if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
                $(PERL) $(srcdir)/fixprogs ssh_prng_cmds $(ENT); \
                if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
                        $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
@@ -271,7 +271,7 @@ install-files: scard-install
                        echo "$(DESTDIR)$(sysconfdir)/ssh_prng_cmds already exists, install will not overwrite"; \
                fi ; \
        fi
-       if [ ! -f $(DESTDIR)$(sysconfdir)/moduli ]; then \
+       @if [ ! -f $(DESTDIR)$(sysconfdir)/moduli ]; then \
                if [ -f $(DESTDIR)$(sysconfdir)/primes ]; then \
                        echo "moving $(DESTDIR)$(sysconfdir)/primes to $(DESTDIR)$(sysconfdir)/moduli"; \
                        mv "$(DESTDIR)$(sysconfdir)/primes" "$(DESTDIR)$(sysconfdir)/moduli"; \
@@ -283,7 +283,7 @@ install-files: scard-install
        fi
 
 host-key: ssh-keygen$(EXEEXT)
-       if [ -z "$(DESTDIR)" ] ; then \
+       @if [ -z "$(DESTDIR)" ] ; then \
                if [ -f "$(DESTDIR)$(sysconfdir)/ssh_host_key" ] ; then \
                        echo "$(DESTDIR)$(sysconfdir)/ssh_host_key already exists, skipping." ; \
                else \
This page took 0.046299 seconds and 5 git commands to generate.