From owner-freebsd-current@FreeBSD.ORG Fri Jul 6 11:02:58 2007 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3B74C16A41F for ; Fri, 6 Jul 2007 11:02:58 +0000 (UTC) (envelope-from shigeru@iij.ad.jp) Received: from otm-mgo00.iij.ad.jp (otm-mgo00.iij.ad.jp [210.138.20.174]) by mx1.freebsd.org (Postfix) with ESMTP id E713213C459 for ; Fri, 6 Jul 2007 11:02:57 +0000 (UTC) (envelope-from shigeru@iij.ad.jp) Received: OTM-MO(otm-mgo00) id l66AYVbU035550; Fri, 6 Jul 2007 19:34:31 +0900 (JST) DKIM-Signature: v=0.5; a=rsa-sha1; c=relaxed/simple; d=iij.ad.jp; s=omgo0; t=1183718071; bh=4uSR4sk4IBE0wVmNTSrIPMiwqVw=; h=Received:Received: Date:Message-Id:To:Cc:Subject:From:In-Reply-To:References:X-Mailer: Mime-Version:Content-Type:Content-Transfer-Encoding; b=gD8zy2Ue9Bb 26GLwsgLpYj8DQ8iLPNEDuXrkjmbB7ZwmR1wDAphZfXcFyTCiSL5ljdlf8ZkV2umDnM mG0E+2CWhX50MAmAuMZyr3+tS8Nz4Bl3xnSJppvcCF276ycvznioCD5LNWV2imjNVl0 F0BkJovIuoweV45ywqO6rWHvcI= Received: OTM-MIX(otm-mix00) id l66AYUHo005105; Fri, 6 Jul 2007 19:34:31 +0900 (JST) Received: from localhost (mercury.iij.ad.jp [192.168.184.90]) by rsmtp.iij.ad.jp (OTM-MR/rsmtp00) id l66AYSiJ014840 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 6 Jul 2007 19:34:30 +0900 (JST) Date: Fri, 06 Jul 2007 19:34:28 +0900 (JST) Message-Id: <20070706.193428.212414018.shigeru@iij.ad.jp> To: freebsd-current@freebsd.org From: YAMAMOTO Shigeru In-Reply-To: <1183669505.10705.22.camel@patricia-laptop> References: <1183669505.10705.22.camel@patricia-laptop> X-Mailer: Mew version 5.2 on Emacs 22.0.99 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: dogcube@gmail.com Subject: Re: buildworld error X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2007 11:02:58 -0000 Hi, all, I check a code to generate 'md2hl.c'. I find 'sed' does not work right. I test following patterns. % echo "abcdefg" | sed -e 's/abc/hij/g' hijdefg % echo "ABCDEFG" | sed -e 's/abc/hij/g' hijDEFG % echo "abcdefg" | sed -e 's/ABC/HIJ/g' HIJdefg % echo "ABCDEFG" | sed -e 's/ABC/HIJ/g' HIJDEFG It seems me 'sed' always work with '/I'. #'I' option is added at '2007/07/04 16:42:41'. Is it bug? Thanks, ------- YAMAMOTO Shigeru