Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 43538 invoked from network); 16 Dec 2006 01:28:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Dec 2006 01:28:42 -0000 Received: (qmail 11274 invoked by uid 500); 16 Dec 2006 01:28:50 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 11253 invoked by uid 500); 16 Dec 2006 01:28:50 -0000 Mailing-List: contact stdcxx-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-commits@incubator.apache.org Received: (qmail 11242 invoked by uid 99); 16 Dec 2006 01:28:50 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Dec 2006 17:28:50 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Dec 2006 17:28:41 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 4D58C1A981A; Fri, 15 Dec 2006 17:27:55 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r487746 - /incubator/stdcxx/trunk/etc/config/run_locale_utils.sh Date: Sat, 16 Dec 2006 01:27:55 -0000 To: stdcxx-commits@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061216012755.4D58C1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebor Date: Fri Dec 15 17:27:54 2006 New Revision: 487746 URL: http://svn.apache.org/viewvc?view=rev&rev=487746 Log: 2006-12-15 Martin Sebor * run_locale_utils.sh [Tru64]: Made getopts work on Tru64 by setting the BIN_SH variable and re-executing self with the same command line arguments. Modified: incubator/stdcxx/trunk/etc/config/run_locale_utils.sh Modified: incubator/stdcxx/trunk/etc/config/run_locale_utils.sh URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/run_locale_utils.sh?view=diff&rev=487746&r1=487745&r2=487746 ============================================================================== --- incubator/stdcxx/trunk/etc/config/run_locale_utils.sh (original) +++ incubator/stdcxx/trunk/etc/config/run_locale_utils.sh Fri Dec 15 17:27:54 2006 @@ -47,6 +47,15 @@ ############################################################################## +if [ "`uname`" = "OSF1" -a "$BIN_SH" != "xpg4" ]; then + # make getopts work on Tru64 by setting the BIN_SH variable + # and re-executing self with the same command line arguments + BIN_SH=xpg4 + export BIN_SH + exec $0 $* +fi + + locale="./locale" localedef="./localedef"