X-Recipient: archive-cygwin@delorie.com
X-Spam-Check-By: sourceware.org
From: "Dave Korn" <dave.korn@artimi.com>
To: <cygwin@cygwin.com>
References: <F05AFBF84C348C4AAF1A0E7D126E370A01E29FC6@exbn01.DPEB.DE>
Subject: RE: Install problems ssmtp
Date: Wed, 23 Jan 2008 12:59:34 -0000
Message-ID: <00dc01c85dbf$cd1fd010$2e08a8c0@CAM.ARTIMI.COM>
MIME-Version: 1.0
Content-Type: text/plain; 	charset="us-ascii"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Office Outlook 11
In-Reply-To: <F05AFBF84C348C4AAF1A0E7D126E370A01E29FC6@exbn01.DPEB.DE>
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
Precedence: bulk
List-Id: <cygwin.cygwin.com>
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

On 23 January 2008 12:51, cygwin.20.maillinglist wrote:

> I have a problem with installing ssmtp. I tried to reinstall ssmtp but
> it doesn't help. When I check the status of the package it sayes OK.
> Doesn't that mean that all files of the package are installed. But when
> I try to list the files of the package no file is found.
> 
> How could I fix it?
> 
> ----------Here are the commands I entered to check the
> package------------------------
> bash-3.2$ cygcheck -c ssmtp
> Cygwin Package Information
> Package              Version        Status
> ssmtp                2.61-1         OK
> 
> bash-3.2$ ls -l $(cygcheck -l ssmtp)

  You are using the output of cygcheck to provide a list of filenames for ls.
But cygcheck is a win32 program, so it outputs the list of names with
dos-style CRLF line endings.

>> No such file or directoryssmtp-config

  What it's actually printing here is 

/usr/bin/ssmtp-config[CR, no LF]:  No such file or directory.

and there is of course no such file as "/usr/bin/ssmtp-config^M".  Solution:

ls -l $(cygcheck -l ssmtp | d2u)

    cheers,
      DaveK
-- 
Can't think of a witty .sigline today....


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

