pkgsrc-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: pkg/43187 (icu-config --version under solaris prints -n 4.2.1)



The following reply was made to PR pkg/43187; it has been noted by GNATS.

From: Ryo ONODERA <ryo_on%yk.rim.or.jp@localhost>
To: gnats-bugs%NetBSD.org@localhost, uklaus%hgb-leipzig.de@localhost
Cc: 
Subject: Re: pkg/43187 (icu-config --version under solaris prints -n 4.2.1)
Date: Thu, 05 Apr 2012 05:28:47 +0900 (JST)

 From: Uwe Klaus <uklaus%hgb-leipzig.de@localhost>, Date: Tue,  3 Apr 2012 
14:40:03 +0000 (UTC)
 
 > The following reply was made to PR pkg/43187; it has been noted by GNATS.
 > 
 > From: Uwe Klaus <uklaus%hgb-leipzig.de@localhost>
 > To: gnats-bugs%NetBSD.org@localhost
 > Cc: solaris-pkg-people%NetBSD.org@localhost, 
 > gnats-admin%NetBSD.org@localhost,
 >         pkgsrc-bugs%NetBSD.org@localhost
 > Subject: Re: pkg/43187 (icu-config --version under solaris prints -n 4.2.1)
 > Date: Tue, 3 Apr 2012 16:36:48 +0200 (CEST)
 > 
 >  On Mon, 2 Apr 2012, Ryo ONODERA wrote:
 >  
 >  > Could you test the patch?
 >  now it contains a space character at the end of the line
 >  
 >  00000000 34 2E 38 2E | 31 20 0A                                 4.8.1 .
 
 Hi,
 
 As jeorg@ said, in this case printf is preferable.
 Please try the following patch again.
 
 Thank you.
 
 $NetBSD$
 
 --- config/icu-config-bottom.orig      2011-07-19 21:16:46.000000000 +0000
 +++ config/icu-config-bottom
 @@ -352,11 +352,11 @@ do
            ;;
  
        --version)
 -        echo $ECHO_N $VERSION
 +        printf $VERSION
          ;;
  
      --unicode-version)
 -        echo $ECHO_N $UNICODE_VERSION
 +        printf $UNICODE_VERSION
          ;;
  
        --help)
 
 


Home | Main Index | Thread Index | Old Index