From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/1672 Path: news.gmane.org!not-for-mail From: =?ISO-8859-2?Q?Daniel_Cegie=B3ka?= Newsgroups: gmane.linux.lib.musl.general Subject: Re: [Vision for new platform] syslog, sed, cron Date: Wed, 22 Aug 2012 22:43:17 +0200 Message-ID: References: <20120822185359.GF27715@brightrain.aerifal.cx> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1345668232 7824 80.91.229.3 (22 Aug 2012 20:43:52 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 22 Aug 2012 20:43:52 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-1673-gllmg-musl=m.gmane.org@lists.openwall.com Wed Aug 22 22:43:53 2012 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1T4HmK-0005AE-Rq for gllmg-musl@plane.gmane.org; Wed, 22 Aug 2012 22:43:52 +0200 Original-Received: (qmail 7609 invoked by uid 550); 22 Aug 2012 20:43:50 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 7599 invoked from network); 22 Aug 2012 20:43:50 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding; bh=kvR3VdmChFRGjHtJUPn8si8wl9BPWgzT157FMYKwq1o=; b=p9S/OZQyrty100ryXlx4rPyKxRyKjUwqY+z4NxRKqhNkG4fGL7LXL9SMUaj3urDr04 Vz4x0bS83OSE0kl/G7Kgevavmz8m6bMJP/Tk6ty3vKXhR125LnE2syisCoe2B91ViKaR FNCOXutsdLbEXMNFZEnKNyZZEbo9TkwjdJQu35aPxnGE2rnVkDZgZnr0XgFhFEgdVjov IwMttTE0/gtDz2ogwCcDLfImqy+8gJFx8qXJF2DJfurKNV/NKV/eSM3LZUy7+sb7bWXk XrzNr8M7NfCE637Lk/yhhO07jXj7548ZDcr7Gj6YK3VnpF8vA6j6Fq5745Fmd2mcrEJI 18Uw== In-Reply-To: <20120822185359.GF27715@brightrain.aerifal.cx> Xref: news.gmane.org gmane.linux.lib.musl.general:1672 Archived-At: 2012/8/22 Rich Felker : > On Wed, Aug 22, 2012 at 07:31:49PM +0200, Daniel Cegie=C5=82ka wrote: >> Unfortunately, even with minised I can't build packages such as >> e2fsprogs, findutils or find etc. >> >> from my find's build.log: >> >> checking whether gcc and cc understand -c and -o together... yes >> checking for a BSD-compatible install... /usr/bin/install -c >> checking whether ln -s works... yes >> checking for a sed that does not truncate output... configure: error: >> no acceptable sed could be found in $PATH > > What does "truncate output" mean? Are they trying to process data with > embedded nuls? Or just really long lines? I don't know.. but I found in bb's sed code: /* Lie to autoconf when it starts asking stupid questions. */ if (argv[1] && strcmp(argv[1], "--version") =3D=3D 0) { puts("This is not GNU sed version 4.0"); return 0; } Daniel